zhibo/android-app/settings.gradle.kts

27 lines
787 B
Plaintext
Raw Permalink Normal View History

2025-12-16 15:47:36 +08:00
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")
2025-12-16 15:47:36 +08:00
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")
2025-12-16 15:47:36 +08:00
google()
mavenCentral()
maven(url = "https://jitpack.io")
2025-12-16 15:47:36 +08:00
}
}
rootProject.name = "LiveStreamingAndroid"
include(":app")