It seems my Android Studio does not want to break on any exception by default. Enabling break on \"Any Exception\" starts breaking within actual JDE libraries. Is there any
To break on all exceptions, caught or uncaught:
!(this instanceof java.lang.ClassNotFoundException) 
(Add Pattern) button. Enter:
com.myapp.* (replace this with the namespace prefix of your app)java.* (note: as per OP's question, leave this out to NOT break on Java libraries)android.* (as above, leave out to just debug own app code)