Android-android 怎么实现只混淆自己的代码,而不混淆第3方jar包

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-android 怎么实现只混淆自己的代码,而不混淆第3方jar包相关的知识,希望对你有一定的参考价值。

参考技术A   为了解决第三方包不被混淆,第三方包在混淆后,运行的时候会挂掉。我的错误是java.lang.ExceptionInInitializerError

[java] E/androidRuntime( 9608):
java.lang.ExceptionInInitializerError
E/AndroidRuntime( 9608): at
a.a.b.f.<init>(Unknown Source)
E/AndroidRuntime( 9608): at
a.a.b.e.<init>(Unknown Source)
E/AndroidRuntime( 9608): at
a.a.c.dg.b(Unknown Source)
E/AndroidRuntime( 9608): at
a.a.c.dg.a(Unknown Source)
E/AndroidRuntime( 9608): at
a.a.c.b.a(Unknown Source)
E/AndroidRuntime( 9608): at
a.a.c.ad.a(Unknown Source)

  ………………………………………………………………………………中间部分省略
  最终我通过 加LOG的调试方法定位到是由于第三方jar包被混淆后的原因导致的。

  解决方法:
  在proguard-android.txt文件最后加入了-keep class org.jsoup.**这样一句代码,就是保持这个类不被混淆

  附上proguard-android.txt源文件

  

  [html] # This is a configuration file for ProGuard.
  # http://proguard.sourceforge.net/index.html#manual/usage.html
  
  -dontusemixedcaseclassnames
  -dontskipnonpubliclibraryclasses
  -verbose
  
  # Optimization is turned off by default. Dex does not like code run
  # through the ProGuard optimize and preverify steps (and performs some
  # of these optimizations on its own).
  -dontoptimize
  -dontpreverify
  # Note that if you want to enable optimization, you cannot just
  # include optimization flags in your own project configuration file;
  # instead you will need to point to the
  # "proguard-android-optimize.txt" file instead of this one from your
  # project.properties file.
  
  -keepattributes *Annotation*
  -keep public class com.google.vending.licensing.ILicensingService
  -keep public class com.android.vending.licensing.ILicensingService
  
  # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
  -keepclasseswithmembernames class *
  native <methods>;
  
  
  # keep setters in Views so that animations can still work.
  # see http://proguard.sourceforge.net/manual/examples.html#beans
  -keepclassmembers public class * extends android.view.View
  void set*(***);
  *** get*();
  
  
  # We want to keep methods in Activity that could be used in the XML attribute onClick
  -keepclassmembers class * extends android.app.Activity
  public void *(android.view.View);
  
  
  # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
  -keepclassmembers enum *
  public static **[] values();
  public static ** valueOf(java.lang.String);
  
  
  -keep class * implements android.os.Parcelable
  public static final android.os.Parcelable$Creator *;
  
  
  -keepclassmembers class **.R$*
  public static <fields>;
  
  
  # The support library contains references to newer platform versions.
  # Don't warn about those in case this app is linking against an older
  # platform version. We know about them, and they are safe.
  -dontwarn android.support.**
  
  -keep class org.jsoup.**

  # This is a configuration file for ProGuard.
  # http://proguard.sourceforge.net/index.html#manual/usage.html

  -dontusemixedcaseclassnames
  -dontskipnonpubliclibraryclasses
  -verbose

  # Optimization is turned off by default. Dex does not like code run
  # through the ProGuard optimize and preverify steps (and performs some
  # of these optimizations on its own).
  -dontoptimize
  -dontpreverify
  # Note that if you want to enable optimization, you cannot just
  # include optimization flags in your own project configuration file;
  # instead you will need to point to the
  # "proguard-android-optimize.txt" file instead of this one from your
  # project.properties file.

  -keepattributes *Annotation*
  -keep public class com.google.vending.licensing.ILicensingService
  -keep public class com.android.vending.licensing.ILicensingService

  # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
  -keepclasseswithmembernames class *
  native <methods>;
  

  # keep setters in Views so that animations can still work.
  # see http://proguard.sourceforge.net/manual/examples.html#beans
  -keepclassmembers public class * extends android.view.View
  void set*(***);
  *** get*();
  

  # We want to keep methods in Activity that could be used in the XML attribute onClick
  -keepclassmembers class * extends android.app.Activity
  public void *(android.view.View);
  

  # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
  -keepclassmembers enum *
  public static **[] values();
  public static ** valueOf(java.lang.String);
  

  -keep class * implements android.os.Parcelable
  public static final android.os.Parcelable$Creator *;
  

  -keepclassmembers class **.R$*
  public static <fields>;
  

  # The support library contains references to newer platform versions.
  # Don't warn about those in case this app is linking against an older
  # platform version. We know about them, and they are safe.
  -dontwarn android.support.**

  -keep class org.jsoup.**本回答被提问者和网友采纳
参考技术B proguard keep 后面佳第三方jar包类名 可以防止混淆

以上是关于Android-android 怎么实现只混淆自己的代码,而不混淆第3方jar包的主要内容,如果未能解决你的问题,请参考以下文章

Android-Android ViewPager 怎么添加点击监听器

Android-Android下怎么遍历assets录下的子文件夹

Android-android 怎么通过usb 连接电脑进行通讯

Android-Android下怎么遍历assets录下的子文件夹

Android-Android内容提供器之访问其他程序的数据

Android-Android文件存储之将数据保存在data目录下