This commit is contained in:
阿猫
2026-09-03 12:38:16 +08:00
parent 09669fe4a2
commit e96e92d7ab
68 changed files with 2810 additions and 0 deletions

32
settings.gradle.kts Normal file
View 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")