123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- # 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
- -dontwarn com.tencent.bugly.**
- -keep public class com.tencent.bugly.**{*;}
- -optimizationpasses 5 # 指定代码的压缩级别
- -dontusemixedcaseclassnames # 是否使用大小写混合
- -dontpreverify # 混淆时是否做预校验
- -verbose # 混淆时是否记录日志
- -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* # 混淆时所采用的算法
- #在此基础上,我们也可以使用Java的基本规则来保护特定类不被混淆,比如我们可以用extend,implement等这些Java规则。如下
- # 保留我们使用的四大组件,自定义的Application等等这些类不被混淆
- # 因为这些子类都有可能被外部调用
- # 避免混淆Annotation、内部类、泛型、匿名类
- -keepattributes *Annotation*,InnerClasses,Signature,EnclosingMethod
- -renamesourcefileattribute SourceFile
- # 抛出异常时保留代码行号
- -keepattributes SourceFile,LineNumberTable
- -keep public class * extends android.app.Activity # 保持哪些类不被混淆
- -keep public class * extends android.app.Application # 保持哪些类不被混淆
- -keep public class * extends android.app.Service # 保持哪些类不被混淆
- -keep public class * extends android.content.BroadcastReceiver # 保持哪些类不被混淆
- -keep public class * extends android.content.ContentProvider # 保持哪些类不被混淆
- -keep public class * extends android.app.backup.BackupAgentHelper # 保持哪些类不被混淆
- -keep public class * extends android.preference.Preference # 保持哪些类不被混淆
- #-keep public class com.android.vending.licensing.ILicensingService # 保持哪些类不被混淆
- #解决在6.0系统出现java.lang.InternalError
- -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
- long producerIndex;
- long consumerIndex;
- }
- -keep class **$Properties
- -keep class *{*;}
- #assume no side effects:删除android.util.Log输出的日志
- -assumenosideeffects class android.util.Log {
- public static *** v(...);
- public static *** d(...);
- public static *** i(...);
- public static *** w(...);
- public static *** e(...);
- }
- # 保留support下的所有类及其内部类
- -keep class android.support.** {*;}
- # 保留继承的
- -keep public class * extends android.support.v4.**
- -keep public class * extends android.support.v7.**
- -keep public class * extends android.support.annotation.**
- # 保留R下面的资源
- -keep class **.R$* {*;}
- -keep class com.dlc.* {*;}
- # 保留在Activity中的方法参数是view的方法,
- # 这样以来我们在layout中写的onClick就不会被影响
- -keepclassmembers class * extends android.app.Activity{
- public void *(android.view.View);
- }
- # 保留枚举类不被混淆
- -keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
- }
- -keepclasseswithmembernames class * { # 保持 native 方法不被混淆
- native <methods>;
- }
- -keepclasseswithmembers class * { # 保持自定义控件类不被混淆
- public <init>(android.content.Context, android.util.AttributeSet);
- }
- -keepclasseswithmembers class * {# 保持自定义控件类不被混淆
- public <init>(android.content.Context, android.util.AttributeSet, int);
- }
- -keepclassmembers class * extends android.app.Activity { # 保持自定义控件类不被混淆
- public void *(android.view.View);
- }
|