kchat/settings.gradle.kts
kaixed ff751834e4 refactor: 重构数据持久化方案
- 将 ObjectBox 替换为 Room 作为本地数据库
- 优化部分代码结构,提高可维护性
2025-05-31 11:10:25 +08:00

29 lines
752 B
Plaintext

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
maven(url = "https://developer.huawei.com/repo/")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
maven(url = "https://developer.huawei.com/repo/")
}
}
rootProject.name = "KChat-Android"
include(":app")
include(":core_common")
include(":core_network")