Files
Android/settings.gradle.kts
Aayush Gupta 757a942ecf Migrate to Kotlin DSL
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
2023-10-08 11:17:52 +05:30

25 lines
621 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")
includeGroup("com.github.invissvenska")
}
}
}
}
rootProject.name = "Catima"
include(":app")