My app works fine when it's unsigned (debugging, etc..), also when exporting without ProGuard. But when I export it with ProGuard, When a piece of code containing native methods that I import is executing, it crashes.

What can I do? I guess that getting the stack trace, but I have no idea how to do that...

I have tried this: How do I obtain crash-data from my Android application? But no files actually appear where they should (I guess I have done that wrong too :()

The device MUST be saving crash stack traces SOMEWHERE. Where are they?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 0 down vote accepted

The proguard.cfg in your project has a collection of ignore rules for classes that shouldn't be obfuscated. You can essentially ignore everything and slowly obfuscate code each pass. Native methods, methods called by reflection-indirection shouldn't be obfuscated.

link|improve this answer
Thanks :) I have found that on my own a few hours ago but your post did summarize it for the following readers. – Jong Nov 15 '11 at 18:59
feedback

If you are using Fragment class add the following line to your proguard.cfg file: -keep public class * extends android.app.Fragment

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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