everybody!
Now I'm trying to use ACRA for sending crash reports on my e-mail. I have the next ACRA settings:
@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
)
The question is: how to tell ACRA to send the stack trace from all of the threads running (like in debug) to me?
Thanks! I will be really appreciated for the answers!