mirror of
https://github.com/philj56/gbcc-android.git
synced 2024-11-26 23:00:23 +00:00
21 lines
360 B
Plaintext
21 lines
360 B
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "gbcc"
|
|
include(":app")
|