123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- -verbose
- -android
- -forceprocessing
- -optimizationpasses 14
- -allowaccessmodification
- -dontpreverify
- -dontskipnonpubliclibraryclasses
- -dontskipnonpubliclibraryclassmembers
- -mergeinterfacesaggressively
- -overloadaggressively
- -flattenpackagehierarchy
- -repackageclasses 'okhttp3.internal.conn.compat'
- -keeppackagenames doNotKeepAThing
- -ignorewarnings
- -obfuscationdictionary dictionary.txt
- -classobfuscationdictionary classdictionary.txt
- -packageobfuscationdictionary dictionary.txt
- # Do not keep any debugging information
- -renamesourcefileattribute ""
- -keepattributes !SourceFile,!LineNumberTable,!Signature
- # Aggresively removed unused classes, methods, and fields
- -dontwarn
- -dontnote
- -adaptclassstrings
- -adaptresourcefilenames
- -adaptresourcefilecontents
- -include proguard-LoggingRemoval.pro
- -dontwarn org.apache.cordova.**
- # **********************************************************************************************************
- -keep class * { native <methods>; }
- -keep class androidx.core.app.** { public *; }
- -keep class com.google.android.** { *; }
- -keep class com.google.mlkit.** { *; }
- -keep interface com.google.android.** { *; }
- -keep class com.google.android.gms.** { *; }
- -keep class com.google.firebase.** { *; }
- -keep public class javax.mail.** { *; }
- -keep public class com.sun.mail.** { *; }
- -keep public class org.apache.harmony.** { *; }
- # **********************************************************************************************************
- -keep class net.sqlcipher.** { *; }
- -keep public class * implements com.bumptech.glide.module.GlideModule
- -keep public class * extends com.bumptech.glide.module.AppGlideModule
- -keep public enum com.bumptech.glide.load.ImageHeaderParser$** { **[] $VALUES; public *; }
- # **********************************************************************************************************
- -keep class net.zetetic.database.sqlcipher.** { *; }
|