初始化代码
This commit is contained in:
41
settings.gradle
Normal file
41
settings.gradle
Normal file
@@ -0,0 +1,41 @@
|
||||
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" }
|
||||
}
|
||||
}
|
||||
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" }
|
||||
flatDir { dirs 'libs' } // 如果需要 flatDir,放在这里
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "qxLive"
|
||||
include ':app'
|
||||
include ':moduleUtil' //工具模块
|
||||
include ':moduleLogin' //登录模块
|
||||
include ':modulemain' //首页模块
|
||||
include ':modulevoice' //声播模块
|
||||
include ':moduletablayout'
|
||||
include ':modulecircle' //语圈模块
|
||||
include ':modulevocal' //个人模块
|
||||
Reference in New Issue
Block a user