我正在尝试添加使用acra发送给我的电子邮件支持的崩溃转储。我相信有一个选项可以在重新启动应用程序时显示对话框。
以下是我的报告Crash
@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.
)
我不认为有一个选项可以在重新启动应用程序时显示对话框,它通常在应用程序关闭前崩溃时显示。但是对于对话框显示,您所拥有的配置看起来是正确的。
警告一句,现在不赞成使用谷歌文档来捕捉崩溃报告。你应该寻找另一个类似Acralyzer的崩溃报告后端。