Merge pull request #14504 from Simonx22/android/agp-r8-bug

Android: Pin R8 9.1.34 to fix release minify crash
This commit is contained in:
JosJuice
2026-03-24 21:39:05 +01:00
committed by GitHub

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()