forked from unom/punktfunk
The bump itself came from Android Studio; this makes the rest of the repo agree with it. The toolchain line at the top of the root build file still claimed AGP 9.2.0 and Gradle 9.4.1, and both Android workflows named "AGP 9.2" as the reason they pin JDK 21 — the sort of comment that is trusted precisely because it looks maintained. The Gradle caches also needed telling: they cache the DISTRIBUTION under `~/.gradle/wrapper`, keyed on a hash of `*.gradle.kts` only. This bump moved both files so the key changed anyway, but a wrapper-only bump would have restored a key that can never contain the new distribution. The wrapper properties are in the key now. Verified with the workflows' own commands on the new toolchain: `:app:testDebugUnitTest -PskipRustBuild --stacktrace --rerun-tasks` (the screenshot job, 45 tasks from cold) and `:app:assembleDebug` including the cargo-ndk native build. AGP 9.3.1 resolves no build-tools newer than the 37.0.0 both jobs install, so their sdkmanager lines still cover it.
12 lines
733 B
Kotlin
12 lines
733 B
Kotlin
// Root build file. AGP 9.2.0 has BUILT-IN Kotlin support — modules do NOT apply
|
|
// org.jetbrains.kotlin.android (it's an error under AGP 9). The Compose compiler plugin is declared
|
|
// here (version + apply false) so modules can apply it version-less; its version pins the build's
|
|
// Kotlin (compose-compiler and Kotlin release in lockstep), keeping them matched.
|
|
// Toolchain: AGP 9.3.1 · Gradle 9.5.0 · Kotlin/Compose-compiler 2.3.21 · JDK 21 · Compose BOM
|
|
// 2026.05.01 · compileSdk 37 · targetSdk 37 · minSdk 28.
|
|
plugins {
|
|
id("com.android.application") version "9.3.1" apply false
|
|
id("com.android.library") version "9.3.1" apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.3.21" apply false
|
|
}
|