mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2025-12-23 23:28:14 -05:00
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.
24 lines
565 B
Kotlin
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")
|