2025-06-25 14:38:08 +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 {
|
2025-07-18 17:21:43 +08:00
|
|
|
maven { setUrl("https://maven.aliyun.com/repository/public") }
|
2025-06-25 14:38:08 +08:00
|
|
|
google()
|
|
|
|
mavenCentral()
|
2025-09-01 10:53:05 +08:00
|
|
|
flatDir { dirs("app/src/main/libs")}
|
2025-06-25 14:38:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "iB86"
|
|
|
|
include ':app'
|