2021-05-22 20:47:40 +02:00
|
|
|
-dontusemixedcaseclassnames
|
2023-04-17 00:02:24 +02:00
|
|
|
-ignorewarnings
|
2021-05-22 20:47:40 +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 {
|
2023-08-26 16:30:26 +02:00
|
|
|
public static final ** CREATOR;
|
2021-05-22 20:47:40 +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>(...);
|
|
|
|
}
|