I found the “Add Java Exception Breakpoint” menu item but it only seems to work on the exact exception type that I select. So if I ask it to break on Exception, it does not break in case of a NumberFormatException. How do I make it break for all exceptions?
My activity is exiting for no apparent reason with no LogCat output, so it would be nice to find out about any exceptions that are occurring, whether caught or uncaught and whether in my code or just in Android.
java.lang.Throwable(which is the most specific superclass of all exceptions – unlikeException, it also matches instances ofError)