65 lines
2.4 KiB
Groovy
65 lines
2.4 KiB
Groovy
pluginManagement {
|
||
repositories {
|
||
google {
|
||
content {
|
||
includeGroupByRegex("com\\.android.*")
|
||
includeGroupByRegex("com\\.google.*")
|
||
includeGroupByRegex("androidx.*")
|
||
}
|
||
}
|
||
mavenCentral()
|
||
gradlePluginPortal()
|
||
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" }
|
||
maven { url "https://jitpack.io" }
|
||
maven { url "https://mvn.mob.com/android" }
|
||
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
||
}
|
||
}
|
||
dependencyResolutionManagement {
|
||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
repositories {
|
||
google()
|
||
mavenCentral()
|
||
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" }
|
||
maven { url "https://jitpack.io" }
|
||
maven { url "https://mvn.mob.com/android" }
|
||
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
||
flatDir { dirs 'libs' } // 如果需要 flatDir,放在这里
|
||
}
|
||
}
|
||
|
||
rootProject.name = "qxLive"
|
||
include ':app'
|
||
include ':moduleUtil' //工具模块
|
||
include ':moduleLogin' //登录模块
|
||
include ':modulemain' //首页模块
|
||
include ':modulevoice' //声播模块
|
||
include ':moduletablayout'
|
||
include ':modulecircle' //语圈模块
|
||
include ':modulevocal' //个人模块
|
||
include ':modulenews' //音域
|
||
|
||
// 引入内部组件通信模块 (必要模块)
|
||
//include ':tuicore'
|
||
//project(':tuicore').projectDir = new File(settingsDir, '../TUIKit/TUICore/tuicore')
|
||
//
|
||
//// 引入 IM 组件公共模块(必要模块)
|
||
////include ':timcommon'
|
||
////project(':timcommon').projectDir = new File(settingsDir, '../TUIKit/TIMCommon/timcommon')
|
||
//
|
||
//// 引入聊天功能模块 (基础功能模块)
|
||
//include ':tuichat'
|
||
//project(':tuichat').projectDir = new File(settingsDir, '../TUIKit/TUIChat/tuichat')
|
||
//
|
||
//// 引入会话功能模块 (基础功能模块)
|
||
//include ':tuiconversation'
|
||
//project(':tuiconversation').projectDir = new File(settingsDir, '../TUIKit/TUIConversation/tuiconversation')
|
||
include ':timcommon'
|
||
include ':tuichat'
|
||
include ':tuiconversation'
|
||
include ':tuicore'
|