Reputation: 14658
I am using proguard with the ACRA.
The problem is that the line numbers I am getting are incorrect. I get the crash report from ACRA, then I decode it using the Proguard GUI retrace tool. I get the line number, I look in the code and statment is totally not what crash is showing. I know that proguard shrinks and optimize the code, so is there any way I can somehow get around al lthis and get the correct line number? Thank you
Upvotes: 1
Views: 553
Reputation: 45676
The mapping file for ReTrace should correspond to the processed code that you released and to the source code that you are looking at now. The line numbers can be off otherwise.
Upvotes: 1