mirror of
https://github.com/Joker-x-dev/AndroidProject-Compose.git
synced 2025-12-27 15:47:11 +00:00
28 lines
685 B
Kotlin
28 lines
685 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
||
|
||
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()
|
||
// JitPack 远程仓库:https://jitpack.io
|
||
maven { url = uri("https://jitpack.io") }
|
||
}
|
||
}
|
||
|
||
rootProject.name = "AndroidProject-Compose"
|
||
include(":app")
|