2025-05-15 11:08:23 +08:00
|
|
|
|
pluginManagement {
|
|
|
|
|
|
repositories {
|
|
|
|
|
|
google {
|
|
|
|
|
|
content {
|
|
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
maven { url "https://maven.aliyun.com/repository/public/" }
|
|
|
|
|
|
maven { url "https://maven.aliyun.com/repository/central" }
|
|
|
|
|
|
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
|
2025-07-17 22:46:35 +08:00
|
|
|
|
maven { url 'https://maven.aliyun.com/repository/google' } // Google专属库
|
2025-05-15 11:08:23 +08:00
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
|
|
maven { url "https://mvn.mob.com/android" }
|
2025-07-17 22:46:35 +08:00
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven' }
|
2025-05-29 08:59:34 +08:00
|
|
|
|
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
2025-07-17 22:46:35 +08:00
|
|
|
|
mavenCentral()
|
|
|
|
|
|
gradlePluginPortal()
|
2025-05-15 11:08:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
|
repositories {
|
2025-07-17 22:46:35 +08:00
|
|
|
|
|
2025-05-15 11:08:23 +08:00
|
|
|
|
maven { url "https://maven.aliyun.com/repository/public/" }
|
|
|
|
|
|
maven { url "https://maven.aliyun.com/repository/central" }
|
|
|
|
|
|
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
|
2025-07-17 22:46:35 +08:00
|
|
|
|
maven { url 'https://maven.aliyun.com/repository/google' } // Google专属库
|
2025-05-15 11:08:23 +08:00
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
|
|
maven { url "https://mvn.mob.com/android" }
|
2025-07-17 22:46:35 +08:00
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven' }
|
2025-05-29 08:59:34 +08:00
|
|
|
|
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
2025-05-15 11:08:23 +08:00
|
|
|
|
flatDir { dirs 'libs' } // 如果需要 flatDir,放在这里
|
2025-07-17 22:46:35 +08:00
|
|
|
|
google()
|
|
|
|
|
|
mavenCentral()
|
2025-05-15 11:08:23 +08:00
|
|
|
|
}
|
2025-06-07 09:00:24 +08:00
|
|
|
|
|
2025-05-15 11:08:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootProject.name = "qxLive"
|
|
|
|
|
|
include ':app'
|
|
|
|
|
|
include ':moduleUtil' //工具模块
|
|
|
|
|
|
include ':moduleLogin' //登录模块
|
|
|
|
|
|
include ':modulemain' //首页模块
|
|
|
|
|
|
include ':modulevoice' //声播模块
|
|
|
|
|
|
include ':moduletablayout'
|
|
|
|
|
|
include ':modulecircle' //语圈模块
|
|
|
|
|
|
include ':modulevocal' //个人模块
|
2025-05-29 08:59:34 +08:00
|
|
|
|
include ':modulenews' //音域
|
|
|
|
|
|
|
|
|
|
|
|
include ':timcommon'
|
|
|
|
|
|
include ':tuichat'
|
|
|
|
|
|
include ':tuiconversation'
|
|
|
|
|
|
include ':tuicore'
|
2025-06-09 09:14:32 +08:00
|
|
|
|
include ':moduleroom'
|