Reformat to use more standard Android code style

Follows stock Android Studio styles for Kotlin and XML except that we
use an indent of two and allow up to three consecutive empty lines.
This commit is contained in:
Reinout Meliesie 2026-01-22 19:29:45 +01:00
commit eebb3a589d
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
17 changed files with 512 additions and 481 deletions

View file

@ -1,16 +1,16 @@
pluginManagement {
repositories {
google ()
mavenCentral ()
gradlePluginPortal ()
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google ()
mavenCentral ()
}
repositories {
google()
mavenCentral()
}
}
rootProject . name = "Zanbur"
include (":app")
rootProject.name = "Zanbur"
include(":app")