*
This commit is contained in:
32
settings.gradle.kts
Normal file
32
settings.gradle.kts
Normal file
@@ -0,0 +1,32 @@
|
||||
// 监测数据不落地平台 · 安卓客户端 —— 工程模块注册与仓库配置
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
// 依赖仓库统一在此声明,模块级 build 文件禁止再配 repositories
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "SteCmdAndroid"
|
||||
|
||||
include(":app")
|
||||
include(":core:common")
|
||||
include(":core:network")
|
||||
include(":core:database")
|
||||
include(":core:ble")
|
||||
include(":ble-protocol")
|
||||
Reference in New Issue
Block a user