Skip to content Skip to sidebar Skip to footer

App Crashes On Production But Not In Development

I just launched my brand new app on Google Play but its crashing when i try to open it. The thing is, it used to work just fine in development. I have ProGuard enabled and i tried

Solution 1:

You are probably obfuscating the Activity lifecycle method names. Make sure not to do that.

Solution 2:

I finally solved it… the problem is that i forgot to add the ActionBarSherlock code for the proguard to work with it..

-keep class android.support.v4.app.** { *; }-keep interface android.support.v4.app.** { *; }-keep class com.actionbarsherlock.** { *; }-keep interface com.actionbarsherlock.** { *; }-keepattributes *Annotation*

Post a Comment for "App Crashes On Production But Not In Development"