2025-05-20 16:39:05 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
2025-05-22 18:13:34 +08:00
|
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
2025-05-20 16:39:05 +08:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2025-05-22 18:13:34 +08:00
|
|
|
mavenLocal()
|
2025-05-20 16:39:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "study.App"
|
|
|
|
include ':app'
|