Skip to content Skip to sidebar Skip to footer

Debug The Obfuscated Stack Trace For Android Using Proguard

I have been trying to obfuscate my Android app stack trace using ProGuard mapping file. I have tried using -verbose and added these lines in configuration file proguard-rules.pro i

Solution 1:

I decode my obfuscate stack trace like this:

In your sdk directory android-sdk\tools\proguard\bin\ .. open console and write: retrace.bat -verbose mapping.txt obfuscated_trace.txt Where mapping.txt is generated from android studio when apk is build for release, and obfuscated_trace.txt is your exception from google play console.

and it works for me. Hope to help!

Post a Comment for "Debug The Obfuscated Stack Trace For Android Using Proguard"