breakout71/settings.gradle.kts
Renan LE CARO d2cfce2a0e Initial commit
I cleared the project history to start fresh on the public version
2025-02-15 19:21:00 +01:00

24 lines
No EOL
533 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Breakout"
include(":app")