使用Proguard代码混淆器,特别要注意一点的就是使用了反射机制的类属性或方法最好不要参与混淆.
Proguard 4.5 相关的选项配置如下:

#不要混淆MyBean的所有属性与方法-keepclasseswithmembers class MyBean {    <fields>;    <methods>;}


#不要混淆MySuperBean所有子类的属性与方法-keepclasseswithmembers class * extends MySuperBean{    <fields>;    <methods>;}

#不混淆某个包下的类-keep class com.google.** {*;}



如果项目中使用到 Gson(Json)那么要使用下面的代码

##---------------Begin: proguard configuration for Gson  ---------- # Gson uses generic type information stored in a class file when working with fields. Proguard # removes such information by default, so configure it to keep all of it. -keepattributes Signature  # For using GSON @Expose annotation -keepattributes *Annotation*  # Gson specific classes -keep class sun.misc.Unsafe { *; } #-keep class com.google.gson.stream.** { *; }  # Application classes that will be serialized/deserialized over Gson -keep class com.google.gson.examples.android.model.** { *; }  ##---------------End: proguard configuration for Gson  ---------- 


更多相关文章

  1. Android(安卓)ApiDemos示例解析(103):Views->Auto Complete->5.
  2. Android——ContentProvider总结
  3. Android中使用定时器的三种方法
  4. Android(安卓)Studio 项目混淆打包时,报错Caused by: java.lang.N
  5. Support Annotation Library使用详解
  6. Android(安卓)从原型模式看java实例化对象clone和new的区别
  7. Android高仿IOS和QQ的弹出对话框
  8. Android仿考拉全局滑动返回及联动效果的实现方法
  9. 关于android双卡手机sim卡信息采集适配的心得

随机推荐

  1. [Android实例] android多点触摸demo
  2. Android之AlertDialog.Builder详解
  3. android蓝牙模块
  4. CentOS 安装 Android
  5. android 弹出日期选择框
  6. 使用组件构建Android应用程序
  7. 使用Android新式LruCache缓存图片,基于线
  8. Android仿iPhone的日期时间选择器
  9. 自定义一个简易的RecyclerView的LinearLa
  10. use ffmpeg to setup streaming server o