komikku/app/proguard-android-optimize.txt

35 lines
725 B
Text
Raw Permalink Normal View History

2021-05-22 22:07:06 +02:00
-allowaccessmodification
-dontusemixedcaseclassnames
-ignorewarnings
2021-05-22 22:07:06 +02:00
-verbose
-keepattributes *Annotation*
-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
2021-05-22 22:07:06 +02:00
}
-keep class androidx.annotation.Keep
-keep @androidx.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <init>(...);
}