Files
Android/settings.gradle
2022-10-18 21:11:50 +02:00

27 lines
654 B
Groovy

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