Files
AndroidJetpack/jerboa/settings.gradle.kts
T
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

23 lines
532 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
// For snapshot version of Telephoto
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
}
}
rootProject.name = "jerboa"
include(":app")
include(":benchmarks")