321 lines
9.5 KiB
Prolog
321 lines
9.5 KiB
Prolog
# 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
|
||
|
||
|
||
-keep class com.google.android.material.** {*;}
|
||
-keep class androidx.** {*;}
|
||
-keep public class * extends androidx.**
|
||
-keep interface androidx.** {*;}
|
||
-dontwarn com.google.android.material.**
|
||
-dontnote com.google.android.material.**
|
||
-dontwarn androidx.**
|
||
|
||
|
||
-dontpreverify
|
||
-dontwarn com.alibaba.fastjson.**
|
||
-dontwarn com.umeng.message.**
|
||
-dontwarn com.amap.**
|
||
-dontwarn rx.internal.util.**
|
||
-dontwarn okio.**
|
||
|
||
|
||
|
||
#############################################
|
||
#
|
||
# 对于一些基本指令的添加
|
||
#
|
||
#############################################
|
||
# 代码混淆压缩比,在0~7之间,默认为5,一般不做修改
|
||
-optimizationpasses 5
|
||
|
||
# 混合时不使用大小写混合,混合后的类名为小写
|
||
-dontusemixedcaseclassnames
|
||
|
||
# 指定不去忽略非公共库的类
|
||
-dontskipnonpubliclibraryclasses
|
||
|
||
# 这句话能够使我们的项目混淆后产生映射文件
|
||
# 包含有类名->混淆后类名的映射关系
|
||
-verbose
|
||
|
||
# 指定不去忽略非公共库的类成员
|
||
-dontskipnonpubliclibraryclassmembers
|
||
|
||
# 不做预校验,preverify是proguard的四个步骤之一,Android不需要preverify,去掉这一步能够加快混淆速度。
|
||
-dontpreverify
|
||
|
||
# 保留Annotation不混淆
|
||
-keepattributes *Annotation*,InnerClasses
|
||
|
||
# 避免混淆泛型
|
||
-keepattributes Signature
|
||
|
||
# 抛出异常时保留代码行号
|
||
-keepattributes SourceFile,LineNumberTable
|
||
|
||
# 指定混淆是采用的算法,后面的参数是一个过滤器
|
||
# 这个过滤器是谷歌推荐的算法,一般不做更改
|
||
-optimizations !code/simplification/cast,!field/*,!class/merging/*
|
||
|
||
|
||
#############################################
|
||
#
|
||
# Android开发中一些需要保留的公共部分
|
||
#
|
||
#############################################
|
||
|
||
# 保留我们使用的四大组件,自定义的Application等等这些类不被混淆
|
||
# 因为这些子类都有可能被外部调用
|
||
-keep public class * extends android.app.Activity
|
||
-keep public class * extends android.app.Appliction
|
||
-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 * extends android.view.View
|
||
-keep public class com.android.vending.licensing.ILicensingService
|
||
|
||
|
||
# 保留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$* {*;}
|
||
|
||
# 保留本地native方法不被混淆
|
||
-keepclasseswithmembernames class * {
|
||
native <methods>;
|
||
}
|
||
|
||
# 保留在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);
|
||
}
|
||
|
||
# 保留我们自定义控件(继承自View)不被混淆
|
||
-keep public class * extends android.view.View{
|
||
*** get*();
|
||
void set*(***);
|
||
public <init>(android.content.Context);
|
||
public <init>(android.content.Context, android.util.AttributeSet);
|
||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
||
}
|
||
|
||
# 保留Parcelable序列化类不被混淆
|
||
-keep class * implements android.os.Parcelable {
|
||
public static final android.os.Parcelable$Creator *;
|
||
}
|
||
|
||
# 保留Serializable序列化的类不被混淆
|
||
-keepclassmembers class * implements java.io.Serializable {
|
||
static final long serialVersionUID;
|
||
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
||
!static !transient <fields>;
|
||
!private <fields>;
|
||
!private <methods>;
|
||
private void writeObject(java.io.ObjectOutputStream);
|
||
private void readObject(java.io.ObjectInputStream);
|
||
java.lang.Object writeReplace();
|
||
java.lang.Object readResolve();
|
||
}
|
||
|
||
# 对于带有回调函数的onXXEvent、**On*Listener的,不能被混淆
|
||
-keepclassmembers class * {
|
||
void *(**On*Event);
|
||
void *(**On*Listener);
|
||
}
|
||
|
||
# webView处理,项目中没有使用到webView忽略即可
|
||
-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||
public *;
|
||
}
|
||
-keepclassmembers class * extends android.webkit.webViewClient {
|
||
public void *(android.webkit.WebView, java.lang.String, android.graphics.Bitmap);
|
||
public boolean *(android.webkit.WebView, java.lang.String);
|
||
}
|
||
-keepclassmembers class * extends android.webkit.webViewClient {
|
||
public void *(android.webkit.webView, jav.lang.String);
|
||
}
|
||
|
||
|
||
|
||
|
||
#友盟推送混淆
|
||
-dontwarn com.taobao.**
|
||
-dontwarn anet.channel.**
|
||
-dontwarn anetwork.channel.**
|
||
-dontwarn org.android.**
|
||
-dontwarn org.apache.thrift.**
|
||
-dontwarn com.xiaomi.**
|
||
-dontwarn com.huawei.**
|
||
-dontwarn com.meizu.**
|
||
-keepattributes *Annotation*
|
||
-keep class com.taobao.** {*;}
|
||
-keep class org.android.** {*;}
|
||
-keep class anet.channel.** {*;}
|
||
-keep class com.umeng.** {*;}
|
||
-keep class com.xiaomi.** {*;}
|
||
-keep class com.huawei.** {*;}
|
||
-keep class com.meizu.** {*;}
|
||
-keep class org.apache.thrift.** {*;}
|
||
-keep class com.alibaba.sdk.android.**{*;}
|
||
-keep class com.ut.**{*;}
|
||
-keep class com.ta.**{*;}
|
||
-keep public class **.R$*{
|
||
public static final int *;
|
||
}
|
||
|
||
|
||
##SDK需要引用导入工程的资源文件,通过了反射机制得到资源引用文件R.java,但是在开发者通过proguard等混淆/优化工具处理apk时,proguard可能会将R.java删除
|
||
#-keep public class [com.dachun.dazhihui].R$*{
|
||
#public static final int *;
|
||
#}
|
||
|
||
#分享混淆
|
||
-dontshrink
|
||
-dontoptimize
|
||
-dontwarn com.google.android.maps.**
|
||
-dontwarn android.webkit.WebView
|
||
-dontwarn com.umeng.**
|
||
-dontwarn com.tencent.weibo.sdk.**
|
||
-keep public class javax.**
|
||
-keep public class android.webkit.**
|
||
-dontwarn android.support.v4.**
|
||
-keepattributes Exceptions,InnerClasses,Signature
|
||
-keepattributes *Annotation*
|
||
-keepattributes SourceFile,LineNumberTable
|
||
-keep public interface com.tencent.**
|
||
-keep public interface com.umeng.socialize.**
|
||
-keep public interface com.umeng.socialize.sensor.**
|
||
-keep public interface com.umeng.scrshot.**
|
||
-keep public class com.umeng.socialize.* {*;}
|
||
-keep class com.umeng.scrshot.**
|
||
-keep public class com.tencent.** {*;}
|
||
-keep class com.umeng.socialize.sensor.**
|
||
-keep class com.umeng.socialize.handler.**
|
||
-keep class com.umeng.socialize.handler.*
|
||
-keep class com.umeng.weixin.handler.**
|
||
-keep class com.umeng.weixin.handler.*
|
||
-keep class UMMoreHandler{*;}
|
||
-keep class com.tencent.mm.sdk.modelmsg.WXMediaMessage {*;}
|
||
-keep class com.tencent.mm.sdk.modelmsg.** implements com.tencent.mm.sdk.modelmsg.WXMediaMessage$IMediaObject {*;}
|
||
-keep class im.yixin.sdk.api.YXMessage {*;}
|
||
-keep class im.yixin.sdk.api.** implements im.yixin.sdk.api.YXMessage$YXMessageData{*;}
|
||
-keep class com.tencent.mm.sdk.** {
|
||
*;
|
||
}
|
||
-keep class com.tencent.mm.opensdk.** {
|
||
*;
|
||
}
|
||
-keep class com.tencent.wxop.** {
|
||
*;
|
||
}
|
||
-keep class com.tencent.mm.sdk.** {
|
||
*;
|
||
}
|
||
-keep class com.tencent.** {*;}
|
||
-dontwarn com.tencent.**
|
||
-keep class com.kakao.** {*;}
|
||
-dontwarn com.kakao.**
|
||
-keep public class com.umeng.com.umeng.soexample.R$*{
|
||
public static final int *;
|
||
}
|
||
-keep public class com.linkedin.android.mobilesdk.R$*{
|
||
public static final int *;
|
||
}
|
||
-keepclassmembers enum * {
|
||
public static **[] values();
|
||
public static ** valueOf(java.lang.String);
|
||
}
|
||
-keep class com.tencent.open.TDialog$*
|
||
-keep class com.tencent.open.TDialog$* {*;}
|
||
-keep class com.tencent.open.PKDialog
|
||
-keep class com.tencent.open.PKDialog {*;}
|
||
-keep class com.tencent.open.PKDialog$*
|
||
-keep class com.tencent.open.PKDialog$* {*;}
|
||
-keep class com.umeng.socialize.impl.ImageImpl {*;}
|
||
-keep class com.sina.** {*;}
|
||
-dontwarn com.sina.**
|
||
-keep class com.alipay.share.sdk.** {
|
||
*;
|
||
}
|
||
-keepnames class * implements android.os.Parcelable {
|
||
public static final ** CREATOR;
|
||
}
|
||
-keep class com.linkedin.** { *; }
|
||
-keep class com.android.dingtalk.share.ddsharemodule.** { *; }
|
||
-keepattributes Signature
|
||
|
||
#okhttp
|
||
-dontwarn okhttp3.**
|
||
-keep class okhttp3.**{*;}
|
||
|
||
#okio
|
||
-dontwarn okio.**
|
||
-keep class okio.**{*;}
|
||
|
||
-ignorewarnings -keep class * { public private *; }
|
||
|
||
#bugly
|
||
-dontwarn com.tencent.bugly.**
|
||
-keep public class com.tencent.bugly.**{*;}
|
||
|
||
############====================androidannotations====================##############
|
||
-dontwarn org.androidannotations.**
|
||
-keep class org.androidannotations.** {*;}
|
||
##处理注释属性
|
||
#-keepattributes *Annotation*
|
||
#
|
||
-dontwarn org.springframework.**
|
||
#-keep class org.springframework.**{*;}
|
||
|
||
# Bugly混淆规则
|
||
-dontwarn com.tencent.bugly.**
|
||
-keep public class com.tencent.bugly.**{*;}
|
||
# tinker混淆规则
|
||
-dontwarn com.tencent.tinker.**
|
||
-keep class com.tencent.tinker.** { *; }
|
||
|
||
# 避免影响升级功能,需要keep住support包的类
|
||
-keep class android.support.**{*;}
|
||
-keep class com.iflytek.**{*;}
|
||
-keepattributes Signature
|
||
|
||
|
||
|
||
|
||
|
||
|