-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TransactionTooLargeException when sending large log using mail #601
Comments
Try with |
Thanks, that works just fine. |
For ACRA 5.0.0, this is now possible. Example usage: build.gradle: dependencies {
compile 'com.faendir.acra:acra-mail:5.0.0-alpha14'
compile 'com.faendir.acra:acra-dialog:5.0.0-alpha14'
} MyApplication.java: //reportFormat is used by all senders, including mailsender
@AcraCore(reportFormat = StringFormat.KEY_VALUE_LIST)
@AcraMailSender(mailTo = "***")
@AcraDialog(
resText = R.string.crash_dialog_text,
resTheme = R.style.Theme_AppCompat_Light_Dialog) |
Awesome, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got
android.os.TransactionTooLargeException
when trying to send exception generated by anr-watchdog via email.I'm using dialog mode and dialog is displayed successfully, but when clicked 'OK' to send report gmail is killed and report cannot be sent.
This is due to large exception stack trace generated by anr-watchdog (585292 bytes).
This is highly unlikely in normal circumstances, but can anything be done to handle this situation?
The text was updated successfully, but these errors were encountered: