2

如果应用程序崩溃了,我想发送 /data/anr/traces.txt,但问题是我怎么知道我的应用程序之前崩溃了。

    File file = new File("/data/anr/traces.txt");
    if (file.exists()) {
        Intent intent = new Intent(Intent.ACTION_SEND);
        intent.putExtra("subject", file.getName());
        intent.putExtra("body", "...");
        intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));

        if (file.getName().endsWith(".gz")) {
            intent.setType("application/x-gzip");
        } else if (file.getName().endsWith(".txt")) {
            intent.setType("text/plain");
        } else {
            intent.setType("application/octet-stream");
        }

                    // ? Can I send it without permission?
        startActivity(intent);
    }
4

2 回答 2

6

一种可靠的方法是使用“脏位”;当您的应用程序启动时向文件写入一个值,并在它干净关闭时向文件写入一个不同的值。每次您的应用程序启动时,在写入文件之前检查文件中的内容;如果它不是您在应用程序完全关闭时写入的值,您就知道应用程序崩溃了。

于 2012-10-11T01:20:45.357 回答
2

或者,您可以使用 ACRA http://code.google.com/p/acra/。它将使您能够将崩溃报告直接发送到您的应用服务器/第三方服务器。

于 2012-10-11T02:16:55.377 回答