2025-11-28 23:19:32 +08:00
|
|
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
|
|
|
2025-11-28 21:00:25 +08:00
|
|
|
|
pluginManagement {
|
|
|
|
|
|
repositories {
|
|
|
|
|
|
google {
|
|
|
|
|
|
content {
|
|
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
|
repositories {
|
|
|
|
|
|
google()
|
|
|
|
|
|
mavenCentral()
|
2025-11-30 01:38:52 +08:00
|
|
|
|
// JitPack 远程仓库:https://jitpack.io
|
|
|
|
|
|
maven { url = uri("https://jitpack.io") }
|
2025-11-28 21:00:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootProject.name = "AndroidProject-Compose"
|
|
|
|
|
|
include(":app")
|