Proguard不保留stacktrace中的行号和方法名称

时间:2016-09-04 23:31:05

标签: android proguard android-proguard

以下是proguard-rules.pro

的几行
 -keepattributes *Annotation*
 -keepattributes Signature
 -keepattributes InnerClasses,EnclosingMethod
 -renamesourcefileattribute SourceFile
 -keepattributes SourceFile,LineNumberTable
 -keep public class * extends java.lang.Exception
 -dontwarn org.apache.http.**

Logcat输出(错误行号列为1133,而我的源文件长100行)

09-04 16:11:46.698 3827-5280/com.XX.main E/AndroidRuntime: FATAL EXCEPTION: IntentService[ActivityRecognizedTracker]
Process: com.XX.main, PID: 3827
java.lang.NullPointerException: Attempt to read from field 'double com.XX.trips.Trip.a' on a null object reference
at com.XX.ActivityRecognizedTracker.onHandleIntent(SourceFile:1133)

我保留了行号和源文件属性,但堆栈跟踪仍然是混淆的。我做错了什么?

1 个答案:

答案 0 :(得分:10)

AFAIK不可能混淆代码并拥有原始的堆栈跟踪。因此,如果要在stacktrace中查看原始方法和类名,则必须添加DatabaseName规则。

但你真的不需要原始的堆栈跟踪。

您正在使用-dontobfuscate,这使您可以unambiguously retrace the stacktrace。只是不要忘记保留生成的-keepattributes SourceFile,LineNumberTable文件。

此外,如果您删除mapping.txt,您将在括号中看到原始文件名。行号已经存在,所以你应该能够找到实际发生异常的地方而不追溯。