zhibo/android-app/settings.gradle.kts
2025-12-21 17:35:06 +08:00

20 lines
382 B
Plaintext

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "LiveStreamingAndroid"
include(":app")