Files
Android/settings.gradle.kts
T
2026-08-11 22:06:01 +02:00

26 lines
601 B
Kotlin

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
exclusiveContent {
forRepositories(maven("https://jitpack.io"))
filter {
// limit jitpack repository to these groups
includeGroup("com.github.yalantis")
}
}
}
}
rootProject.name = "Catima"
include(":app")
include(":wear")
include(":shared")