| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # Add project specific ProGuard rules here.
- # You can control the set of applied configuration files using the
- # proguardFiles setting in build.gradle.
- #
- # For more details, see
- # http://developer.android.com/guide/developing/tools/proguard.html
- # If your project uses WebView with JS, uncomment the following
- # and specify the fully qualified class name to the JavaScript interface
- # class:
- #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
- # public *;
- #}
- # Uncomment this to preserve the line number information for
- # debugging stack traces.
- #-keepattributes SourceFile,LineNumberTable
- # If you keep the line number information, uncomment this to
- # hide the original source file name.
- #-renamesourcefileattribute SourceFile
- -ignorewarnings
- -optimizationpasses 5 # 指定代码的压缩级别
- -dontusemixedcaseclassnames # 是否使用大小写混合
- -dontpreverify # 混淆时是否做预校验
- -verbose # 混淆时是否记录日志
- # 保持行号
- -keepattributes SourceFile,LineNumberTable
- # androidX
- -dontwarn org.xmlpull.v1.XmlPullParser
- -dontwarn org.xmlpull.v1.XmlSerializer
- -keep class org.xmlpull.v1.* {*;}
- -keep class com.google.android.material.** { *; }
- -dontwarn com.google.android.material.**
- -dontnote com.google.android.material.**
- -dontwarn androidx.**
- -keep class androidx.** { *; }
- -keep interface androidx.** { *; }
- # kotlin
- -keep class kotlin.** { *; }
- -keep class kotlin.Metadata { *; }
- -dontwarn kotlin.**
- -keepclassmembers class **$WhenMappings {
- <fields>;
- }
- -keepclassmembers class kotlin.Metadata {
- public <methods>;
- }
- -assumenosideeffects class kotlin.jvm.internal.Intrinsics {
- static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
- }
- -keep class com.hgsoft.log.** { *; }
- # keep Xlog
- -keep class com.tencent.mars.** { *;}
- # keep zip4j
- -keep class net.lingala.zip4j.** { *;}
|