如何使用ACRA记录来自所有线程的堆栈跟踪

时间:2012-10-29 15:50:10

标签: java android multithreading crash-reports acra

大家!

现在我正在尝试使用ACRA在我的电子邮件上发送崩溃报告。 我有下一个ACRA设置:

@ReportsCrashes(
formKey = "",
mailTo = "developer@email.com",
additionalSharedPreferences = {
    CSConfig.pref.PREFERENCES
},
customReportContent = {
    ReportField.PHONE_MODEL,
    ReportField.ANDROID_VERSION,
    ReportField.APP_VERSION_NAME,
    ReportField.APP_VERSION_CODE,
    ReportField.STACK_TRACE,
    ReportField.AVAILABLE_MEM_SIZE,
    ReportField.SHARED_PREFERENCES,
    ReportField.LOGCAT
},
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash_toast_msg

问题是:如何告诉ACRA从所有人发送堆栈跟踪 线程运行(如在调试中)给我?

谢谢! 我将非常感谢您的答案!

0 个答案:

没有答案