What is the most common way to handle an exception after throwing it. I do not mean what to do in order to return from the exception, and not to close the activity or something else. I mean, how do I tell the developer the error number, StackTrace, and other log files created from the exception?
What is the most common way to send them to the developer? Or is it not so often?
Are you asking the user to send an email containing this information? Do you implement some form similar to that used on sites on the contact page, and automatically send information?
How do developers approach this problem? I would really like to receive feedback from users, so I know where, and if, my application crashes, but I'm not sure where to start.
source share