Release v2026.05.14.0 — player polish, CacheFiller, offline mutation queue #47

Merged
bvandeusen merged 262 commits from dev into main 2026-05-14 21:17:45 -04:00
3 changed files with 14 additions and 8 deletions
Showing only changes of commit 4071894217 - Show all commits
+4 -4
View File
@@ -1,9 +1,9 @@
plugins { plugins {
alias(libs.plugins.android.application) alias(libs.plugins.android.application)
// kotlin-android removed: AGP 9.0+ auto-enables Kotlin via the // kotlin-android applied explicitly: AGP 9's built-in Kotlin path is
// android.builtInKotlin=true default. The serialization + compose-compiler // not compatible with KSP yet. Opted out via
// plugins still need explicit application because they're language-level // android.builtInKotlin=false in gradle.properties.
// (Kotlin compiler) plugins beyond what built-in Kotlin provides. alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.serialization) alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.compose.compiler) alias(libs.plugins.compose.compiler)
alias(libs.plugins.ksp) alias(libs.plugins.ksp)
+4 -4
View File
@@ -1,9 +1,9 @@
plugins { plugins {
alias(libs.plugins.android.application) apply false alias(libs.plugins.android.application) apply false
// kotlin-android plugin no longer needed: AGP 9.0+ auto-enables via // kotlin-android needed despite AGP 9's built-in Kotlin: KSP isn't
// android.builtInKotlin=true (default). Kept the serialization + // compatible with the builtInKotlin path yet, so we opt out via
// compose-compiler plugins, which are language-level (Kotlin compiler) // android.builtInKotlin=false in gradle.properties.
// plugins still applied explicitly per module. alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.serialization) apply false alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.ksp) apply false alias(libs.plugins.ksp) apply false
alias(libs.plugins.hilt) apply false alias(libs.plugins.hilt) apply false
+6
View File
@@ -4,4 +4,10 @@ org.gradle.caching=true
org.gradle.configuration-cache=true org.gradle.configuration-cache=true
android.useAndroidX=true android.useAndroidX=true
android.nonTransitiveRClass=true android.nonTransitiveRClass=true
# KSP isn't compatible with AGP 9's built-in Kotlin support (the
# `android.builtInKotlin=true` default). Opt out so we can apply the
# explicit kotlin-android plugin and KSP together. Revisit when KSP
# adds built-in-Kotlin support.
android.builtInKotlin=false
kotlin.code.style=official kotlin.code.style=official