With proguard config for parcelable class (#3245)

This commit is contained in:
Vivek Maskara 2019-11-30 11:39:17 +05:30 committed by Josephine Lim
parent 1c470241e3
commit 320674762b

View file

@ -75,3 +75,8 @@
-keep class org.acra.** { *; } -keep class org.acra.** { *; }
-keepattributes SourceFile,LineNumberTable -keepattributes SourceFile,LineNumberTable
-keepattributes *Annotation* -keepattributes *Annotation*
# --- Parcelable ---
-keepclassmembers class * implements android.os.Parcelable {
static ** CREATOR;
}