zanbur/settings.gradle.kts

23 lines
373 B
Text
Raw Normal View History

2024-07-25 23:27:14 +02:00
pluginManagement {
repositories {
google {
content {
2024-11-19 18:44:16 +01:00
includeGroupByRegex ("com\\.android.*")
includeGroupByRegex ("com\\.google.*")
includeGroupByRegex ("androidx.*")
2024-07-25 23:27:14 +02:00
}
}
2024-11-19 18:44:16 +01:00
mavenCentral ()
gradlePluginPortal ()
2024-07-25 23:27:14 +02:00
}
}
dependencyResolutionManagement {
repositories {
2024-11-19 18:44:16 +01:00
google ()
mavenCentral ()
2024-07-25 23:27:14 +02:00
}
}
2024-11-19 18:44:16 +01:00
rootProject . name = "Zanbur"
include (":app")