This commit is contained in:
fengjignqi
2026-07-30 15:22:32 +08:00
parent f689e5ae15
commit 6fc4fc29b9
1004 changed files with 49259 additions and 0 deletions

37
settings.gradle Normal file
View File

@@ -0,0 +1,37 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
jcenter()
mavenCentral()
flatDir {
dirs 'app/libs'
}
maven {
url "https://maven.aliyun.com/repository/public"
}
maven { url "https://jitpack.io" }
maven {
url "https://developer.huawei.com/repo/"
}
maven { url "https://s01.oss.sonatype.org/content/groups/public" }
maven { url 'https://repo1.maven.org/maven2/' }
}
}
rootProject.name = "CkCollar_app"
include ':app'