kchat/settings.gradle.kts
kaixed e6094e9a33 fix: 完善聊天界面功能面板
完善聊天界面功能面板
2024-10-29 22:35:49 +08:00

27 lines
607 B
Plaintext

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