Reputation: 2128
I am currently developing an app, but when I start it and try to test my newly added features, the app just stops working and is killed, sending me to my home screen. Obviously something does not work. But why don't I get an error message in the Android Monitor of my Android Studio?
Upvotes: 2
Views: 1766
Reputation: 28298
If you are using Proguard in Debug, nothing will appear. Additionally, if you are not using USB debugging and launching from Android Studio(or any other IDE) nothing will appear either. Check your proguard settings.
Also, only Logcat will show errors in Android Studio
Upvotes: 1