Files
m-stecmd/settings.gradle.kts
阿猫 e96e92d7ab *
2026-09-03 12:38:16 +08:00

33 lines
839 B
Kotlin

// 监测数据不落地平台 · 安卓客户端 —— 工程模块注册与仓库配置
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")