Adding App Dependencies and we are ready to go

This commit is contained in:
2021-08-16 12:53:31 +02:00
parent d594cb90bc
commit 47a711a371
11 changed files with 392 additions and 85 deletions
+18
View File
@@ -0,0 +1,18 @@
plugins {
id("de.fayard.refreshVersions") version "0.11.0"
}
refreshVersions {
enableBuildSrcLibs()
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "android-study-case"
include(":app")