When an unhandled exception is thrown the application is closed (eg NullPointerException) so far so good when you are testing the application through IDE, but when you generate an apk and want your friends to test the application for you , when an exception is raised, how to identify the error?
I'd like to know if there's a possibility to identify all the exceptions thrown on Android to display an AlertDialog of type: "Exception thrown and the app will be closed: java.lang.NullPointerException at com.example ... "or a similar solution such as saving all application logs to a text document, etc.
Thank you:)