# 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.amap.api.maps.**{*;}-keep   class com.autonavi.**{*;}-keep   class com.amap.api.trace.**{*;}-keep class com.amap.api.location.**{*;}-keep class com.amap.api.fence.**{*;}-dontwarn com.loc.**-keep class com.loc.**{*;}-keep class com.autonavi.aps.amapapi.model.**{*;}-keep class com.amap.api.services.**{*;}-keep class com.amap.api.maps2d.**{*;}-keep class com.amap.api.mapcore2d.**{*;}-keep class com.amap.api.navi.**{*;}-keep class com.autonavi.**{*;}-dontwarn com.amap.api.mapcore.**-keep class com.amap.api.mapcore.**{*;}# 微信支付-keep class com.tencent.mm.opensdk.** {*;}-keep class com.tencent.wxop.** {*;}-keep class com.tencent.mm.sdk.** {*;}#环信客服-keep class com.hyphenate.** {*;}-dontwarn  com.hyphenate.**-keep class com.superrtc.** {*;}#极光推送-dontoptimize-dontpreverify-dontwarn cn.jpush.**-keep class cn.jpush.** { *; }-keep class * extends cn.jpush.android.helpers.JPushMessageReceiver { *; }-dontwarn cn.jiguang.**-keep class cn.jiguang.** { *; }-keep class com.linkhand.xdsc.widget.**{*;}-keep class com.linkhand.xdsc.bean.** { *; }## 对于一些基本指令的添加############################################### 代码混淆压缩比,在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 ;}# 保留在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 (android.content.Context);    public (android.content.Context, android.util.AttributeSet);    public (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 ;    !private ;    !private ;    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);}# 移除Log类打印各个等级日志的代码,打正式包的时候可以做为禁log使用,这里可以作为禁止log打印的功能使用# 记得proguard-android.txt中一定不要加-dontoptimize才起作用# 另外的一种实现方案是通过BuildConfig.DEBUG的变量来控制-assumenosideeffects class android.util.Log {    public static int v(...);    public static int i(...);    public static int w(...);    public static int d(...);    public static int e(...);}# glide 混淆    implementation 'com.github.bumptech.glide:glide:4.9.0'-keep public class * implements com.bumptech.glide.module.GlideModule-keep class * extends com.bumptech.glide.module.AppGlideModule { (...);}-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {  **[] $VALUES;  public *;}-keep class com.bumptech.glide.load.data.ParcelFileDescriptorRewinder$InternalRewinder {  *** rewind();}# for DexGuard only#-keepresourcexmlelements manifest/application/meta-data@value=GlideModule #butterknife   混淆   implementation 'com.jakewharton:butterknife:8.8.1'     annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' -keep class butterknife.** { *; } -dontwarn butterknife.internal.**-keep class **$$ViewBinder { *; } -keepclasseswithmembernames class * {     @butterknife.* ; } -keepclasseswithmembernames class * {     @butterknife.* ; } ##XBanner 图片轮播混淆配置  implementation 'com.xhb:xbanner:1.5.1' -keep class com.stx.xhb.xbanner.**{*;}#  gson 混淆    implementation 'com.google.code.gson:gson:2.6.2'#==================gson && protobuf==========================-dontwarn com.google.**-keep class com.google.gson.** {*;}-keep class com.google.protobuf.** {*;} #eventBus  混淆   implementation 'org.greenrobot:eventbus:3.0.0' -keepclassmembers class ** {     @org.greenrobot.eventbus.Subscribe ; } -keep enum org.greenrobot.eventbus.ThreadMode { *; } -keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {     (java.lang.Throwable); } #nohttp  网络请求框架nohttp混淆  implementation 'com.yanzhenjie.nohttp:nohttp:1.1.3' -dontwarn com.yanzhenjie.nohttp.** -keep class com.yanzhenjie.nohttp.**{*;} #支付宝支付    //支付宝支付 implementation(name: 'alipaySdk-15.7.6-20200521195109', ext: 'aar') -keep class com.alipay.android.app.IAlixPay{*;} -keep class com.alipay.android.app.IAlixPay$Stub{*;} -keep class com.alipay.android.app.IRemoteServiceCallback{*;} -keep class com.alipay.android.app.IRemoteServiceCallback$Stub{*;} -keep class com.alipay.sdk.app.PayTask{ public *;} -keep class com.alipay.sdk.app.AuthTask{ public *;} -keep class com.alipay.sdk.app.H5PayCallback {     ;     ; } -keep class com.alipay.android.phone.mrpc.core.** { *; } -keep class com.alipay.apmobilesecuritysdk.** { *; } -keep class com.alipay.mobile.framework.service.annotation.** { *; } -keep class com.alipay.mobilesecuritysdk.face.** { *; } -keep class com.alipay.tscenter.biz.rpc.** { *; } -keep class org.json.alipay.** { *; } -keep class com.alipay.tscenter.** { *; } -keep class com.ta.utdid2.** { *;} -keep class com.ut.device.** { *;} -dontwarn android.net.** -keep class android.net.SSLCertificateSocketFactory{*;}# com.zhy.view.flowlayout 混淆    //流式布局 api 'com.hyman:flowlayout-lib:1.1.2'-keep class com.zhy.view.flowlayout.**{*;}# com.androidkun.xtablayout    implementation 'com.androidkun:XTabLayout:1.1.3'-keep class com.androidkun.xtablayout.**{*;}#com.handmark.pulltorefresh.library    混淆 implementation 'com.loopeer.android.thirdparty.pulltorefresh:Android-PullToRefresh:2.1.1'-keep class com.handmark.pulltorefresh.library.**{*;}# com.zhy 混淆   implementation 'com.zhy:base-rvadapter:3.0.3'   # implementation 'com.zhy:base-adapter:3.0.3'-keep class com.zhy.**{*;}#q.rorbin.badgeview    implementation 'q.rorbin:badgeview:1.1.3'-keep class q.rorbin.badgeview.**{*;}

更多相关文章

  1. 没有一行代码,「2020 新冠肺炎记忆」这个项目却登上了 GitHub 中
  2. Kotlin中的@JvmOverloads
  3. 【Tech-Android-Other】Android中的Future
  4. DrawerLayout中加入多个View
  5. AndroidManifest.xml简单解析
  6. Android(安卓)JazzyViewPager
  7. Android(安卓)Light Sensor
  8. android 退出系统
  9. [置顶] Android实用视图动画及工具系列之六:通用表情栏,仿QQ微信聊

随机推荐

  1. Android高手进阶教程(八)之 ----Android(
  2. Android多网卡
  3. 深入浅出Android(安卓)Gradle构建系统(三
  4. Android(安卓)学习笔记——利用JNI技术在
  5. Android内存管理机制之一:lowmemory kille
  6. Android中的Intent标准跳转应用
  7. 分析Android(安卓)根文件系统启动过程(ini
  8. 学Android开发的人可以去的几个网站
  9. Android缩略图类源代码
  10. Android中如何获取视频文件的缩略图