When I got something like this

ERROR/AndroidRuntime(18677): Caused by: java.lang.NullPointerException
ERROR/AndroidRuntime(18677):     at com.companyname.a.a.a(Unknown Source)

How can I know where the problem is and debug this issue? I only got the mapping output from ProGuard and don't know the line number. Thanks.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

To make use of any stack traces from your Android Market account, you can use your map file, -printmapping, with ReTrace (ProGuard companion tool) to decode the stack trace. You can also decode by hand using the contents of the map file, but this is tedious.

In the ProGuard Manual under examples, there is a section about producing useful obfuscated stack traces including how to keep line numbers.

Unfortunately if you did not set the ProGuard to keep the line numbers, then you will only be able to identify the method that throws the exception.

link|improve this answer
Thanks. That's what I'm looking for! – shiami Oct 14 '10 at 3:16
This process is also explained at developer.android.com/guide/developing/tools/… – David Caunt Mar 17 '11 at 10:21
Coming in ADT 17 (currently a Preview release) are further changes to how PorGuard is configured for Android. tools.android.com/recent/proguardimprovements It doesn't change how to debug using the print mapping, but it will change how you configure ProGuard initially. – cistearns Mar 4 at 19:56
feedback

Add the following lines to your proguard configuration.

-renamesourcefileattribute SourceFile    
-keepattributes SourceFile,LineNumberTable

Now your stack traces will include line numbers, and by using the retrace tool that ships with proguard (included in the Android SDK), you are able to debug like normal.

Note that even if you didn't use these two configuration options, retrace still can output useful information provided you have the mappings file, albeit not totally unambiguously.

Note: the file with the mappings is produced by the proguard configuration option:

 -printmapping outputfile.txt

In the ant file shipped with the Android SDK, it is set to mapping.txt.

Good luck.

link|improve this answer
feedback

The point of using ProGuard is to make the application file difficult to understand and reverse engineer. Function and variable names are scrambled during this process.

Obviously, the debugger got lost in a mess of meaningless symbols. Look at the package name on the second line : the three last elements were replaced by "a" letters.

Try disabling ProGuard during the development process. Once your app functions as you expect, enable ProGuard before buillding for distribution.

link|improve this answer
2  
But what if the application is published to market and have user feedback bugs? – shiami Oct 13 '10 at 1:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.