0.2.42 - DTS surround sound support

This commit is contained in:
ponzischeme89
2026-08-10 12:23:23 +12:00
parent 32c0054c44
commit f41db66ac6
29 changed files with 1363 additions and 128 deletions
+15
View File
@@ -19,3 +19,18 @@ memby.gatewayUrl=https://mserver.sublogue.com
# Enabled parallel sync for Gradle 9.4+
org.gradle.tooling.parallel=true
# Keeps Kotlin compilation with the JetBrains Gradle plugin rather than AGP 9's own
# built-in Kotlin, which is the default from AGP 9 and registers a `kotlin` extension of
# its own — applying org.jetbrains.kotlin.android on top of it fails outright. This is not
# upgrade cruft to be cleared later: Compose and kotlinx.serialization are *Kotlin compiler
# plugins* and need the JetBrains plugin to apply them, so built-in Kotlin cannot build
# this app until AGP carries both.
android.builtInKotlin=false
# Same constraint, one layer down. AGP 9's new DSL replaces BaseExtension, and Kotlin
# 2.2.10's Android plugin still casts the `android` extension to it — with the new DSL on,
# applying it fails with a ClassCastException before anything compiles. This is what makes
# `android { }` report itself deprecated in the build files; that warning cannot be
# resolved from this side, and clears when the Kotlin plugin adopts the new DSL.
android.newDsl=false