2025-12-16 15:47:36 +08:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
2025-12-24 18:11:39 +08:00
|
|
|
// 阿里云镜像加速
|
|
|
|
|
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")
|
2025-12-16 15:47:36 +08:00
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
repositories {
|
2025-12-24 18:11:39 +08:00
|
|
|
// 阿里云镜像加速
|
|
|
|
|
maven(url = "https://maven.aliyun.com/repository/google")
|
|
|
|
|
maven(url = "https://maven.aliyun.com/repository/central")
|
2025-12-16 15:47:36 +08:00
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
2025-12-21 17:35:06 +08:00
|
|
|
maven(url = "https://jitpack.io")
|
2025-12-16 15:47:36 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rootProject.name = "LiveStreamingAndroid"
|
|
|
|
|
include(":app")
|