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.
|
|
You might try the ACRA (Application Crash Report for Android) library:
It's easy to install in your app, highly configurable and don't require you to host a server script anywhere... reports are sent to a Google Doc spreadsheet ! |
|||||||||||||||||||||
|
|
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
|
|||||||||||||||
|
|
In Android 2.2 it's now possible to automatically get Crash Reports from Android Market Applications:
http://developer.android.com/sdk/android-2.2-highlights.html |
|||||||||||||||
|
|
You can also try BugSense. BugSense collects and analyzed all crash reports and gives you meaningful and visual reports. It's free and it's only 1 line of code in order to integrate. Disclaimer: I am a co-founder |
|||||||||||||||||
|
|
I've been using Crittercism for my Android and iOS apps -- heard about them on techcrunch. Pretty happy with them so far! |
|||||
|
|
Ok, well I looked at the provided samples from rrainn and Soonil, and I found a solution that does not mess 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. |
||||
|
|
|
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... |
|||
|
|
|
You can also use a whole (simple) service for it rather than only library. Our company just released a service just for that: http://apphance.com. It has a simple .jar library (for Android) that you add and integrate in 5 minutes and then the library gathers not only crash information but also logs from running application, as well as it lets your testers report problems straight from device - including the whole context (device rotation, whether it is connected to a wifi or not and more). You can look at the logs using a very nice and useful web panel, where you can track sessions with your application, crashes, logs, statistics and more. The service is in closed beta test phase now, but you can request access and we give it to you very quickly. Disclaimer: I am CTO of Polidea, and co-creator of the service. |
||||
|
|
|
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. |
|||||||
|
|
Check this out: http://code.google.com/p/android-remote-stacktrace |
|||
|
|
|
This is very brute, but it is possible to run logcat anywhere, so a quick and dirty hack is to add to any catch block |
||||
|
|
The top answer is not the best way to actually accomplish this. I find writing a file to disk and then checking for it the next time the app is loaded to be pretty hacky. I've come up with a cleaner and more dependable way and put it up on Github. Basically, I send an intent with the crash data to a service. This is a better solution than writing a file, for example, because when an app force closes, the process is terminated so you can't count on anything that will take any time, such as writing to disk or a network request. And, if all you did was write a file to check for next time, its possible they won't ever load the app again and you'll never get that report. By sending an intent, your process will be restarted after being terminated so that the intent can be processed. Thus, you can report every exception right when it happened. |
||||
|
|
use this to catch the exception details:
store this in database and maintain the log. |
||||
|
|
|
We use our home-grown system inside the company and it serves us very well. It's an android library that send crash reports to server and server that receives reports and makes some analytics. Server groups exceptions by exception name, stacktrace, message. It helps to identify most critical issues that need to be fixed. Our service is in public beta now so everyone can try it. You can create account at http://watchcat.co or you can just take a look how it works using demo access http://watchcat.co/reports/index.php?demo. |
||||
|
|
|
Just Started to use ACRA https://github.com/ACRA/acra using Google Forms as backend and it's very easy to setup & use, it's the default. BUT Sending reports to Google Forms are going to be deprecated (then removed): https://plus.google.com/118444843928759726538/posts/GTTgsrEQdN6 https://github.com/ACRA/acra/wiki/Notice-on-Google-Form-Spreadsheet-usage Anyway it's possible to define your own sender https://github.com/ACRA/acra/wiki/AdvancedUsage#wiki-Implementing_your_own_sender you can give a try to email sender for example. With minimum effort it's possible to send reports to bugsense: http://www.bugsense.com/docs/android#acra NB The bugsense free account is limited to 500 report/month |
||||
|
|
|
If your app is being downloaded by other people and crashing on remote devices, you may want to look into an Android error reporting library (referenced in this SO post). If it's just on your own local device, you can use LogCat. Even if the device wasn't connected to a host machine when the crash occurred, connected the device and issuing an adb logcat command will download the entire logcat history (at least to the extent that it is buffered which is usually a loooot of log data, it's just not infinite). Do either of those options answer your question? If not can you attempt to clarify what you're looking for a bit more? |
||||
|
|
|
If you want answers immediately you can use logcat
If there's too much junk in your log right now, try clearing it first.
Then try running your app then logcat again. |
||||
|
|
|
Flurry analytics gives you crash info, hardware model, android version and live app usage stats. In the new SDK they seem to provide more detailed crash info http://www.flurry.com/flurry-crash-analytics.html. |
|||||
|