davx5/settings.gradle.kts
2025-11-20 14:05:57 +01:00

22 lines
410 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
// AboutLibraries
maven("https://plugins.gradle.org/m2/")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// AppIntro, dav4jvm
maven("https://jitpack.io")
}
}
include(":app")