diff options
Diffstat (limited to 'app/proguard-android-optimize.txt')
-rw-r--r-- | app/proguard-android-optimize.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app/proguard-android-optimize.txt b/app/proguard-android-optimize.txt new file mode 100644 index 00000000..e2095ad6 --- /dev/null +++ b/app/proguard-android-optimize.txt @@ -0,0 +1,36 @@ +-allowaccessmodification +-dontpreverify +-dontusemixedcaseclassnames +-dontskipnonpubliclibraryclasses +-verbose + +-keepattributes *Annotation* + +-keepclasseswithmembernames 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>(...); +} |