So my app works perfectly in debug mode, however, when I download it from the play store, it crashes upon trying to open. Can anyone help get a logical or stack trace so I can fix the issue? Thanks!
Asked
Active
Viewed 690 times
3
-
1Use LogCat to examine the Java stack trace associated with your crash: https://stackoverflow.com/questions/23353173/unfortunately-myapp-has-stopped-how-can-i-solve-this – CommonsWare Nov 14 '15 at 23:32
-
Boom! That helped, I had some filters in my logcat that was preventing me from seeing it. Thanks for the help! – AndroidDev21921 Nov 14 '15 at 23:51
-
1Also, careful when using Reflection and Pro-guard. Proguard obfuscates your code, so class / method names are shortened in release versions. You can build a release and email the apk to your device for testing before uploading to Google Play, you can also upload the APK as a beta for testing before pushing live. – Richard Poole Nov 15 '15 at 01:43
-
1This might be a really silly question, but what is Reflection? – AndroidDev21921 Nov 16 '15 at 15:26