22 lines
373 B
Kotlin
22 lines
373 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex ("com\\.android.*")
|
|
includeGroupByRegex ("com\\.google.*")
|
|
includeGroupByRegex ("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral ()
|
|
gradlePluginPortal ()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google ()
|
|
mavenCentral ()
|
|
}
|
|
}
|
|
|
|
rootProject . name = "Zanbur"
|
|
include (":app")
|