在没有混淆的情况下使用 Proguard 和 Android
Posted
技术标签:
【中文标题】在没有混淆的情况下使用 Proguard 和 Android【英文标题】:Using Proguard with Android without obfuscation 【发布时间】:2012-03-27 22:41:33 【问题描述】:我在使用 -dontobfuscate 标志时收到错误消息“转换为 Dalvik 格式失败,出现错误 1”。否则我的应用程序导出正常。我不想混淆,因为我正在使用 BugSense 进行错误跟踪,如果您需要对堆栈跟踪进行去混淆,他们每月收费 99 美元。我仍然想获得proguard的文件大小和优化优势。
如果我注释掉 -dontobfuscate ,每件事都很好。除了不可读的堆栈跟踪。
我的 progaurd.cfg 文件:
-dontobfuscate
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-keep public class * extends android.app.Activity
-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 com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class *
native <methods>;
-keepclasseswithmembers class *
public <init>(android.content.Context, android.util.AttributeSet);
-keepclasseswithmembers class *
public <init>(android.content.Context, android.util.AttributeSet, int);
-keepclassmembers class * extends android.app.Activity
public void *(android.view.View);
-keepclassmembers enum *
public static **[] values();
public static ** valueOf(java.lang.String);
-keep class * implements android.os.Parcelable
public static final android.os.Parcelable$Creator *;
我也将接受一个为我指明正确方向的答案。是否有我应该查看的日志文件?
【问题讨论】:
【参考方案1】:当-dontobfuscate
设置为-optimizations
时,添加!code/allocation/variable
是ProGuard 错误的解决方法
例如
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
【讨论】:
是的,看起来-dontobfuscate
需要!code/allocation/variable
【参考方案2】:
您应确保在 SDK (android-sdk/tools/proguard/lib/proguard .jar)。
【讨论】:
这可能是 ProGuard 或 dex 工具中的错误。如果您可以提供一个允许重现问题的示例,我会在 ProGuard 错误跟踪器上进行调查。以上是关于在没有混淆的情况下使用 Proguard 和 Android的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio:proguard 行号错误,没有完全混淆