Android: Pin R8 9.1.34 to fix release minify crash

Override AGP-bundled R8 in settings.gradle.kts:
- classpath("com.android.tools:r8:9.1.34") from r8-releases/raw

This resolves :app:minifyReleaseWithR8 failing with:
java.lang.IndexOutOfBoundsException: Index -1 out of bounds for length 0

Bug report: https://issuetracker.google.com/issues/495458806

Co-Authored-By: OatmealDome <julian@oatmealdome.me>
This commit is contained in:
Simonx22 2026-03-23 22:29:49 -04:00
parent c05b231015
commit 336f604b3a

View File

@ -1,4 +1,19 @@
pluginManagement {
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
// Temporary override for AGP-bundled R8 crash in release minification.
// https://issuetracker.google.com/issues/495458806
// TODO: Re-test without this override when upgrading AGP and remove if fixed upstream.
classpath("com.android.tools:r8:9.1.34")
}
}
repositories {
gradlePluginPortal()
google()