Files
Android/settings.gradle.kts
Sylvia van Os cc7553850a Target Android 15
We apply window insets to basically not draw behind the top and bottom
bar. While this is a slight visual downgrade (we used to draw behind the
top bar before), it at least allows us to target Android 15.
2025-03-09 16:51:06 +01:00

24 lines
565 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")