AndroidApp/settings.gradle.kts

27 lines
697 B
Plaintext
Raw Normal View History

2025-07-02 17:48:41 +08:00
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
2025-07-11 18:25:40 +08:00
maven { url = uri("https://chaquo.com/maven") }
2025-07-02 17:48:41 +08:00
}
mavenCentral()
gradlePluginPortal()
2025-07-11 18:25:40 +08:00
2025-07-02 17:48:41 +08:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
2025-08-03 23:18:10 +08:00
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/central")
2025-07-02 17:48:41 +08:00
}
}
rootProject.name = "My Application"
include(":app")