up vote 147 down vote favorite
149
share [g+] share [fb]

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.

link|improve this question
feedback

17 Answers

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

Thread.setDefaultUncaughtExceptionHandler(new CustomExceptionHandler(
        "/sdcard/<desired_local_path>", "http://<desired_url>/upload.php"));

CustomExceptionHandler

public class CustomExceptionHandler implements UncaughtExceptionHandler {

    private UncaughtExceptionHandler defaultUEH;

    private String localPath;

    private String url;

    /* 
     * if any of the parameters is null, the respective functionality 
     * will not be used 
     */
    public CustomExceptionHandler(String localPath, String url) {
        this.localPath = localPath;
        this.url = url;
        this.defaultUEH = Thread.getDefaultUncaughtExceptionHandler();
    }

    public void uncaughtException(Thread t, Throwable e) {
        String timestamp = TimestampFormatter.getInstance().getTimestamp();
        final Writer result = new StringWriter();
        final PrintWriter printWriter = new PrintWriter(result);
        e.printStackTrace(printWriter);
        String stacktrace = result.toString();
        printWriter.close();
        String filename = timestamp + ".stacktrace";

        if (localPath != null) {
            writeToFile(stacktrace, filename);
        }
        if (url != null) {
            sendToServer(stacktrace, filename);
        }

        defaultUEH.uncaughtException(t, e);
    }

    private void writeToFile(String stacktrace, String filename) {
        try {
            BufferedWriter bos = new BufferedWriter(new FileWriter(
                    localPath + "/" + filename));
            bos.write(stacktrace);
            bos.flush();
            bos.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private void sendToServer(String stacktrace, String filename) {
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        List<NameValuePair> nvps = new ArrayList<NameValuePair>();
        nvps.add(new BasicNameValuePair("filename", filename));
        nvps.add(new BasicNameValuePair("stacktrace", stacktrace));
        try {
            httpPost.setEntity(
                    new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
            httpClient.execute(httpPost);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

upload.php

<?php
    $filename = isset($_POST['filename']) ? $_POST['filename'] : "";
    $message = isset($_POST['stacktrace']) ? $_POST['stacktrace'] : "";
    if (!ereg('^[-a-zA-Z0-9_. ]+$', $filename) || $message == ""){
        die("This script is used to log debug data. Please send the "
                . "logging message and a filename as POST variables.");
    }
    file_put_contents($filename, $message . "\n", FILE_APPEND);
?>

index.php

<?php
    $myDirectory = opendir(".");
    while($entryName = readdir($myDirectory)) {
        $dirArray[] = $entryName;
    }
    closedir($myDirectory);
    $indexCount = count($dirArray);
    sort($dirArray);
    print("<TABLE border=1 cellpadding=5 cellspacing=0 \n");
    print("<TR><TH>Filename</TH><TH>Filetype</th><th>Filesize</TH></TR>\n");
    for($index=0; $index < $indexCount; $index++) {
        if ((substr("$dirArray[$index]", 0, 1) != ".") 
                && (strrpos("$dirArray[$index]", ".stacktrace") != false)){ 
            print("<TR><TD>");
            print("<a href=\"$dirArray[$index]\">$dirArray[$index]</a>");
            print("</TD><TD>");
            print(filetype($dirArray[$index]));
            print("</TD><TD>");
            print(filesize($dirArray[$index]));
            print("</TD></TR>\n");
        }
    }
    print("</TABLE>\n");
?>
link|improve this answer
How from CustomerErrorHandler can we request go to a particular activity like error handling activity. I mean usually there is one activity that is used to say something like See Admin. How can this be applied to goto a particular activity? Thanks – Androider Apr 21 '11 at 6:49
Please comment on related post: stackoverflow.com/questions/5740843/… – Androider Apr 21 '11 at 8:59
2  
I think this will cause legal issues in some states / countries – Joset Jul 25 '11 at 10:10
NOTE: HttpPost httpPost = new HttpPost(url); must be in an async task (or handler... a separate thread) now if you are targeting Honeycomb or later – Bryan Denny Oct 13 '11 at 0:59
feedback

You might try the ACRA (Application Crash Report for Android) library:

ACRA is a library enabling Android Application to automatically post their crash reports to a GoogleDoc form. It is targetted to android applications developers to help them get data from their applications when they crash or behave erroneously.

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 !

link|improve this answer
3  
This is easy to setup and use. Recommended for pre-market place usage, and even possibly after. – Max Howell Jul 13 '10 at 15:16
2  
+1 has easy to follow setup instructions aswell and works great! – Kman Jul 30 '10 at 15:53
1  
Started using it and it's incommensurably better than the error reporting in Flurry I had before or the homemade one I started with. So far, I'm stoked on "acra". – aspinei Jan 16 '11 at 18:58
3  
The big advantage of acra is the possibility to use Google APIs to easily analyse and visualize the data, see jberkel.github.com/sms-backup-plus/acra-analysis for an example on how to do this. – Jan Berkel Jan 30 '11 at 20:04
1  
@Jan> This is so great! I'm the main ACRA dev, please contact me kevin.gaudin@gmail.com – Kevin Gaudin Jan 31 '11 at 14:01
show 5 more comments
feedback

In Android 2.2 it's now possible to automatically get Crash Reports from Android Market Applications:

New bug reporting feature for Android Market apps enables developers to receive crash and freeze reports from their users. The reports will be available when they log into their publisher account.

http://developer.android.com/sdk/android-2.2-highlights.html

link|improve this answer
I think it is not just 2.2 but simply a new market feature google offers. I got a crashreport some days ago and there shouldn't be a froyo device out there using my app. – Janusz May 28 '10 at 11:49
1  
@Janusz Are you sure? there are already releases of Froyo for Nexus One, without counting the Googlers who've been running Froyo for a while. – J. Pablo Fernández May 28 '10 at 16:03
At least there must been an update in the version on the phone, even its just another revision, but how should this work elsewise? – Roflcoptr May 28 '10 at 16:18
I don't know if the reports got send to google before. The report is somewhat strange because google shows a UI for sending in their videos and that has to be a change in the OS and not only the market. But it says: Platforms 1 reports reports/week and the droid shouldn't be on froyo. – Janusz May 31 '10 at 7:02
1  
The "Report" button code has been in the AOSP for a while, and Romain Guy (vaguely) answered a question about it on here a couple of months ago. – Christopher Jun 8 '10 at 8:34
feedback

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

link|improve this answer
Nice job, definitely going to try it out. Do you have a premium version also or what is it for you? How do you manage to cover the development fees? – SYLARRR Sep 22 '11 at 14:13
Although it's not the right place to discuss, we ll release premium features later on this fall. Thanks for the interest! – PanosJee Sep 25 '11 at 17:48
feedback

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:

public class DefaultExceptionHandler implements UncaughtExceptionHandler{
  private UncaughtExceptionHandler mDefaultExceptionHandler;

  //constructor
  public DefaultExceptionHandler(UncaughtExceptionHandler pDefaultExceptionHandler)
  {
       mDefaultExceptionHandler= pDefaultExceptionHandler;
  }
  public void uncaughtException(Thread t, Throwable e) {       
        //do some action like writing to file or upload somewhere         

        //call original handler  
        mStandardEH.uncaughtException(t, e);        

        // cleanup, don't know if really required
        t.getThreadGroup().destroy();
  }
}

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.

link|improve this answer
feedback

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...

link|improve this answer
feedback

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.

link|improve this answer
feedback

Check this out: http://code.google.com/p/android-remote-stacktrace

link|improve this answer
feedback

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:

private class ExceptionHandler implements Thread.UncaughtExceptionHandler {
    @Override
    public void uncaughtException(Thread thread, Throwable ex){
    	Log.e(Constants.TAG, "uncaught_exception_handler: uncaught exception in thread " + thread.getName(), ex);

    	//hack to rethrow unchecked exceptions
    	if(ex instanceof RuntimeException)
    		throw (RuntimeException)ex;
    	if(ex instanceof Error)
    		throw (Error)ex;

    	//this should really never happen
    	Log.e(Constants.TAG, "uncaught_exception handler: unable to rethrow checked exception");
    }
}

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.

link|improve this answer
Why are you only re-throwing unchecked exceptions? It seems to me you should re-throw all exceptions. – MatrixFrog Sep 9 '10 at 4:18
Looks like someone succeeded with your approach: jyro.blogspot.com/2009/09/crash-report-for-android-app.html – MatrixFrog Sep 9 '10 at 4:27
The trick is to get the previous default UncaughtExceptionHandler and handle the exception to that object after you finished reporting the exception. – Tom Dec 21 '10 at 18:51
feedback

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 getRuntime().exec("logcat >> /sdcard/logcat.log");

link|improve this answer
This would give the log output of all the apps. Filtering by the App tagname might be okay but don't think this would be a good way to go as the entries might be cummulative. Clearing the logcat output after each write might solve that issue though. – Chandra Mohan Jun 14 '11 at 6:24
feedback

BugSense is really great, I use it at all my projects, it send you a email in real time when a crash occurs!

link|improve this answer
feedback

I've been using Crittercism for my Android and iOS apps -- heard about them on techcrunch. Pretty happy with them so far!

link|improve this answer
+1 for Crittercism; excellent debug and error reporting – Carlos P Jan 26 at 17:12
feedback

Check this out: https://github.com/tomquist/Android-Error-Reporter

link|improve this answer
I see that this sends the report to a remote server. Can it also log the exception to a local file? – superuser Jun 21 '11 at 15:20
feedback

Application Crash Report for Android

http://code.google.com/p/acra/

link|improve this answer
feedback

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?

link|improve this answer
feedback

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.

https://github.com/guzba/error-reporter

link|improve this answer
feedback

Flurry analytics gives you crash info, hardware model, android version and live app useage stats.

link|improve this answer
1  
Flurry is limited to only so many characters and gives you no lines numbers or similar. – Bryan Denny Mar 15 '11 at 21:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.