2025-10-20 10:16:44 +08:00
|
|
|
|
pluginManagement {
|
|
|
|
|
|
repositories {
|
|
|
|
|
|
google {
|
|
|
|
|
|
content {
|
|
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven' }
|
|
|
|
|
|
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
|
|
|
|
|
maven { url 'https://mirrors.tencent.com/nexus/repository/maven-public/' }
|
|
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven_public/' }
|
|
|
|
|
|
|
|
|
|
|
|
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://maven.aliyun.com/repository/google' } // Google专属库
|
|
|
|
|
|
|
|
|
|
|
|
maven { url "https://mvn.mob.com/android" }
|
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
|
repositories {
|
|
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven' }
|
|
|
|
|
|
maven { url "https://mirrors.tencent.com/nexus/repository/maven-public/" }
|
|
|
|
|
|
maven { url 'https://mirrors.tencent.com/nexus/repository/maven-public/' }
|
|
|
|
|
|
maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven_public/' }
|
|
|
|
|
|
|
|
|
|
|
|
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://maven.aliyun.com/repository/google' } // Google专属库
|
|
|
|
|
|
|
|
|
|
|
|
maven { url "https://mvn.mob.com/android" }
|
|
|
|
|
|
flatDir { dirs 'libs' } // 如果需要 flatDir,放在这里
|
|
|
|
|
|
google()
|
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-24 17:52:11 +08:00
|
|
|
|
rootProject.name = "羽声语音"
|
2025-10-20 10:16:44 +08:00
|
|
|
|
include ':app'
|
|
|
|
|
|
include ':moduleUtil' //工具模块
|
|
|
|
|
|
include ':moduleLogin' //登录模块
|
|
|
|
|
|
include ':modulemain' //首页模块
|
|
|
|
|
|
include ':modulevoice' //声播模块
|
|
|
|
|
|
include ':moduletablayout'
|
|
|
|
|
|
include ':modulecircle' //语圈模块
|
|
|
|
|
|
include ':modulevocal' //个人模块
|
|
|
|
|
|
include ':modulenews' //音域
|
|
|
|
|
|
|
|
|
|
|
|
include ':timcommon'
|
|
|
|
|
|
include ':tuichat'
|
|
|
|
|
|
include ':tuiconversation'
|
|
|
|
|
|
include ':tuicore'
|
|
|
|
|
|
include ':moduleroom'
|
2025-10-27 20:09:12 +08:00
|
|
|
|
include ':Loadinglibrary'
|
2025-10-24 17:52:11 +08:00
|
|
|
|
|
2025-11-12 11:34:34 +08:00
|
|
|
|
include 'locktableview'
|
|
|
|
|
|
|
2025-11-05 11:13:18 +08:00
|
|
|
|
|