views:

192

answers:

1

Is there any way to modify the generic Android Exception message "The application ... has stopped unexpectedly. Please try again later.” to display something more meaningful to the user?

+1  A: 

What about implementing your own UncaughtExceptionHandler.

See this question for some ideas:

http://stackoverflow.com/questions/601503/how-do-i-obtain-crash-data-from-my-android-application

PHP_Jedi