mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
33 lines
682 B
Text
33 lines
682 B
Text
|
-dontusemixedcaseclassnames
|
||
|
-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;
|
||
|
}
|
||
|
|
||
|
-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>(...);
|
||
|
}
|