0

我正在尝试添加使用 acra 发送给我的电子邮件支持的故障转储。我相信有一个选项可以在重新启动应用程序时显示对话框。

下面是我的报告崩溃

    @ReportsCrashes(formKey="dGVacG0ydVHnaNHjRjVTUTEtb3FPWGc6MQ",
mode = ReportingInteractionMode.DIALOG,
customReportContent = { ReportField.APP_VERSION_CODE, ReportField.APP_VERSION_NAME,
        ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL, ReportField.CUSTOM_DATA,
        ReportField.STACK_TRACE, ReportField.LOGCAT },                

resToastText = R.string.crash_toast_text, // optional, displayed as soon as the crash occurs, before collecting data which can take a few seconds
resDialogText = R.string.crash_dialog_text,
resDialogIcon = android.R.drawable.ic_dialog_info, //optional. default is a warning sign
resDialogTitle = R.string.crash_dialog_title, // optional. default is your application name
resDialogCommentPrompt = R.string.crash_dialog_comment_prompt, // optional. when defined, adds a user text field input with this text resource as a label
resDialogOkToast = R.string.crash_dialog_ok_toast // optional. displays a Toast message when the user accepts to send a report.
)
4

1 回答 1

0

我认为没有选项可以在重新启动应用程序时显示对话框,它通常显示在应用程序被终止之前发生崩溃的时间。但是您在那里的配置对于对话框显示来说看起来是正确的。

警告一句,现在不推荐使用 Google 文档来捕获崩溃报告。您应该寻找另一个崩溃报告后端,例如 Acralyzer。

于 2013-06-28T17:36:35.203 回答