How to debug with obfuscated (with ProGuard) applications on Android?

前端 未结 5 1631
遥遥无期
遥遥无期 2020-12-12 12:50

When I got something like this

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


        
相关标签:
5条回答
  • 2020-12-12 12:54

    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.

    0 讨论(0)
  • 2020-12-12 13:00

    To retrace back obfuscated ProGuard file do the following steps:

    1. You need to install Proguard.

    2. Proguard provides you with a UI mode which is great tool to retrace.

    3. Open up the proguardgui.sh which you find it in MAC machine

      /Users/{name}/Library/Android/sdk/tools/proguard/bin/proguardgui.sh
      

      You can run it through the terminal.

    proguardgui

    1. You can then enter your mapping file and the snipped you want to retrace and it should be retraced

    proguardgui outputs

    0 讨论(0)
  • 2020-12-12 13:03

    Paste your stack trace in stack_trace.txt

    Run the following command: java -jar retrace.jar classes-processed.map stack_trace.txt

    retrace.jar is at sdk\tools\proguard\lib\retrace.jar classes-processed.map is the output file generated by proguard when you did obfuscation

    0 讨论(0)
  • 2020-12-12 13:05

    To make use of any stack traces from your Android Market account, you can use your map file, produced with the-printmapping option in the ProGuard config, 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.

    0 讨论(0)
  • 2020-12-12 13:13

    Here's a link to official documentation on retrace tool from Android SDK: https://developer.android.com/studio/build/shrink-code#decode-stack-trace

    This article is good too: https://medium.com/@maheshwar.ligade/de-obfuscate-stack-traces-6e19a52a3379

    For all you copy-paste bros:

    retrace.bat|retrace.sh [-verbose] mapping.txt [<stacktrace_file>]
    
    0 讨论(0)
提交回复
热议问题