How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running on the wild so that I can improve it and make it more solid.
|
5
|
|
|
|
|
|
For sample applications and debugging purposes, I use a simple solution that allows me to write the stacktrace to the sd card of the device and/or upload it to a server. This solution has been inspired by http://code.google.com/p/android-remote-stacktrace (specifically, the save-to-device and upload-to-server parts) and I think it solves the problem mentioned by Soonil. It's not optimal, but it works and you can improve it if you want to use it in a production application. If you decide to upload the stacktraces to the server, you can use a php script (index.php) to view them. If you're interested, you can find all the sources below - one java class for your application and two optional php scrips for the server hosting the uploaded stacktraces. In a Context (e.g. the main Activity), call
CustomExceptionHandler
upload.php
index.php
|
|||
|
|
|
|
Check this out: http://code.google.com/p/android-remote-stacktrace |
||
|
|
|
|
Ok, well I looked at the provided samples from rrainn and Soonil, and I found a solution that does not messes up error handling. I modified the CustomExceptionHandler so it stores the original UncaughtExceptionHandler from the Thread we associate the new one. At the end of the new "uncaughtException"- Method I just call the old function using the stored UncaughtExceptionHandler. In the DefaultExceptionHandler class you need sth. like this:
With that modification on the code at http://code.google.com/p/android-remote-stacktrace you have a good working base for logging in the field to your webserver or to sd-card. |
||
|
|
|
|
Well the crash dump for your application for any uncaught exceptions should be output to the LogCat window in eclipse whether using the emulator or debugging on your device. However, I am currently not aware of a way to get any crash information for your application in the wild. I think your best bet is to make good exception handling coverage and internal logging, upon startup you can check for logs and delegate the info where you need to (Email, etc.) Are you not getting the crash info in the LogCat window? |
||||
|
|
|
It is possible to handle these exceptions with Thread.setDefaultUncaughtExceptionHandler(), however this appears to mess with Android's method of handling exceptions. I attempted to use a handler of this nature:
However, even with rethrowing the exceptions, I was unable to get the desired behavior, ie logging the exception while still allowing Android to shutdown the component it had happened it, so I gave up on it after a while. |
|||
|
|
|
|
I made my own version here : http://androidblogger.blogspot.com/2009/12/how-to-improve-your-application-crash.html It's basically the same thing, but I'm using a mail rather than a http connexion to send the report, and, more important, I added some informations like application version, OS version, Phone model, or avalaible memory to my report... |
||
|
|
