settings.gradle 296 B

123456789101112
  1. dependencyResolutionManagement {
  2. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  3. repositories {
  4. google()
  5. mavenCentral()
  6. jcenter() // Warning: this repository is going to shut down soon
  7. }
  8. }
  9. rootProject.name = "Stuff"
  10. include ':app'
  11. include ':bare'