build(android): 初始化控制面板工程

添加 Android Gradle 工程骨架和应用模块,给 SDK 控制面板后续界面与联调提供可运行基础。
This commit is contained in:
2026-06-10 18:07:18 +08:00
parent 0ff8e88054
commit 8a90d29b2a
77 changed files with 3572 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "kiwii-sdk-control-panel"
include(":app")