27 lines
787 B
Plaintext
27 lines
787 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
// 阿里云镜像加速
|
|
maven(url = "https://maven.aliyun.com/repository/google")
|
|
maven(url = "https://maven.aliyun.com/repository/central")
|
|
maven(url = "https://maven.aliyun.com/repository/gradle-plugin")
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
// 阿里云镜像加速
|
|
maven(url = "https://maven.aliyun.com/repository/google")
|
|
maven(url = "https://maven.aliyun.com/repository/central")
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "LiveStreamingAndroid"
|
|
include(":app")
|