请先查看 Android如何代码混淆 后再查看本篇文章,本文只讲proguard-project.txt文件
# To enable ProGuard in your project, edit project.properties # to define the proguard.config property as described in that file. # # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified # in ${sdk.dir}/tools/proguard/proguard-android.txt # You can edit the include path and order by changing the ProGuard # include property in project.properties. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # Add any project specific keep options here: # 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 *; #} # 声明第三方jar包 。 # 这里自己看项目有什么包就加什么包,不要照搬。 -libraryjars libs/android-support-v4.jar -libraryjars libs/fastjson-1.1.43.android.jar -libraryjars libs/libammsdk.jar -libraryjars libs/open_sdk_r4889_lite.jar -libraryjars libs/umeng-analytics-v5.5.3.jar -libraryjars libs/umeng-update-v2.6.0.1.jar -libraryjars libs/baidumapapi_v2_4_0.jar -libraryjars libs/locSDK_3.1.jar # 这里是混淆后还能保留的属性。 # 保留异常,内部类,注解,泛型,保留行号的属性。 -keepattributes Exceptions,InnerClasses,*Annotation*,Signature,LineNumberTable # 还有其它属性,如:LocalVariableTable 局部变量、SourceFile 源文件、Deprecated 废弃、Synthetic 合成。 # 保留序列化。 # 比如我们要向activity传递对象使用了Serializable接口的时候,这时候这个类及类里面#的所有内容都不能混淆。 # 这里如果项目有用到序列化和反序列化要加上这句。 -keepnames class * implements java.io.Serializable -keepclassmembers class * implements java.io.Serializable { *; } # 保留model,一般model最好避免混淆(model无关紧要,不混淆也没多大关系) # 这里的com. oschina.test是自己项目的包名,不要照搬。 -keep class com. oschina.test.model.* {*;} # 保留适配器 -keep public class * extends android.widget.BaseAdapter {*;} # 如果你使用了CusorAdapter,添加下面这行 -keep public class * extends android.widget.CusorAdapter{*;} # 同样如果你觉得麻烦,就直接将BaseAdpater换成Adapter # 保留资源类变量不被混淆,否则,你的反射是获取不到资源id的 # 这里的com. oschina.test是自己项目的包名,不要照搬。 -keep public class com. oschina.test.R$*{ public static final int *; } # 保留四大组件和自定义控件及组件。 # 如果我们自定了ListView,ScrollView,Gallery这些组件的时候, # 我们就不能混淆这些自定义的类了,因为在layout里面我们已经引用这个了类,而且已经写死了。 # 第二句保留在activity中的方法参数是view的方法,这样的话,我们在xml里面编写onClick就不会被影响了 -keep public class * extends android.app.Activity -keepclassmembers class * extends android.app.Activity { public void *(android.view.View); } -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 * extends android.view.View {*;} -keep public class * extends android.app.Fragment -keep public class * extends android.support.v4.** -keep public class * extends android.support.v7.** -keep public class com.android.vending.licensing.ILicensingService -keepclasseswithmembers class * { public <init>(android.content.Context, android.util.AttributeSet); } -keepclasseswithmembers class * { public <init>(android.content.Context, android.util.AttributeSet, int); } # 保留点击和回调函数 -keepclasseswithmembers class * { void onClick*(...); } -keepclasseswithmembers class * { *** *Callback(...); } ##-----------------第三方jar包配置(选择性添加)------------------------- # ImageLoader -dontwarn com.nostra13.universalimageloader.** -keep class com.nostra13.universalimageloader.** { *; } # 融云 -dontwarn io.rong.** -keep class io.rong.** {*;} -keepclassmembers class **.R$* { public static <fields>; } -keep class *.R$ { *;} # 腾讯 -dontwarn com.tencent.** -keep class com.tencent.** { *;} # SlidingMenu -dontwarn com.jeremyfeinstein.slidingmenu.** -keep class com.jeremyfeinstein.slidingmenu.** { *; } # xutils -dontwarn com.lidroid.xutils.** -keep class com.lidroid.** { *; } -keep class * extends java.lang.annotation.Annotation { *; } # 友盟 -dontwarn com.umeng.** -keep class com.umeng.** {*;} # 新浪微博 -dontwarn com.sina.weibo.sdk.** -keep class com.sina.weibo.sdk.** { *; } # fastjson -dontwarn com.alibaba.fastjson.** -keep class com.alibaba.fastjson.** { *; } # pulltorefresh -dontwarn com.handmark.pulltorefresh.library.** -dontwarn com.handmark.pulltorefresh.library.extras.** -dontwarn com.handmark.pulltorefresh.library.internal.** -keep class com.handmark.pulltorefresh.library.** { *;} -keep class com.handmark.pulltorefresh.library.extras.** { *;} -keep class com.handmark.pulltorefresh.library.internal.** { *;} # 百度地图 # 地图组件包括图层、定位等接口所有的类及类里面的内容都不要混淆 # 交通实况相关的类及类里面的所有内容不要混淆 -keep class com.baidu.** { *; } -keep class vi.com.gdi.bgl.android.**{*;} # android v4 v7扩展包 -dontwarn android.support.** -keep class android.support.v4.** { *; } -keep class android.support.v7.** { *; }
补充一下:
对于引用第三方包的情况,可以采用下面方式避免打包出错:
-dontwarn com.xx.yy.** -keep class com.xx.yy.** { *;}
时间: 2024-10-12 11:26:56