[android] Fixed release error with R8 shrinking

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-06-11 22:39:09 +02:00 committed by Alexander Borsuk
parent 1b20d27720
commit 7f03685abe
2 changed files with 6 additions and 0 deletions

View file

@ -26,6 +26,7 @@ buildscript {
ext.googleFirebaseServicesEnabled = project.hasProperty('firebase') ?: googleFirebaseServicesDefault
dependencies {
classpath 'com.android.tools:r8:3.3.28'
classpath 'com.android.tools.build:gradle:7.2.1'
if (googleMobileServicesEnabled) {

View file

@ -6,6 +6,11 @@
!transient <fields>;
}
# Enabling shrinking causes
# Execution failed for task ':minifyFdroidReleaseWithR8'.
# > com.android.tools.r8.CompilationFailedException: Compilation failed to complete
-dontshrink
-keepnames class * implements com.mapswithme.util.Gsonable {
!transient <fields>;
}