Switch to email crash reporting

This commit is contained in:
Aleksandras Kostarevas 2024-04-02 13:03:48 -05:00
parent 314df88693
commit 2a4840d794
3 changed files with 18 additions and 21 deletions

View File

@ -192,7 +192,7 @@ dependencies {
implementation 'androidx.datastore:datastore-preferences:1.0.0'
implementation 'androidx.autofill:autofill:1.1.0'
implementation 'ch.acra:acra-http:5.11.1'
implementation 'ch.acra:acra-mail:5.11.1'
implementation 'ch.acra:acra-dialog:5.11.1'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="crashed_text">FUTO Keyboard has crashed! Please send a report to help us fix this.
Note: If you are experiencing repeated crashes, please update the app or contact us.</string>
<string name="crashed_text">FUTO Keyboard has crashed! Please email us a report to help us fix this (voiceinput@futo.org)</string>
<string name="crashed_title">Crash Reporter</string>
<string name="crash_report_accept">Send Report</string>

View File

@ -3,33 +3,31 @@ package org.futo.inputmethod.latin
import android.app.Application
import android.content.Context
import org.acra.config.dialog
import org.acra.config.httpSender
import org.acra.config.mailSender
import org.acra.data.StringFormat
import org.acra.ktx.initAcra
import org.acra.sender.HttpSender
class CrashLoggingApplication : Application() {
override fun attachBaseContext(base: Context?) {
super.attachBaseContext(base)
if(BuildConfig.ENABLE_ACRA) {
initAcra {
reportFormat = StringFormat.JSON
initAcra {
reportFormat = StringFormat.JSON
dialog {
text = getString(R.string.crashed_text)
title = getString(R.string.crashed_title)
positiveButtonText = getString(R.string.crash_report_accept)
negativeButtonText = getString(R.string.crash_report_reject)
resTheme = android.R.style.Theme_DeviceDefault_Dialog
}
dialog {
text = getString(R.string.crashed_text)
title = getString(R.string.crashed_title)
positiveButtonText = getString(R.string.crash_report_accept)
negativeButtonText = getString(R.string.crash_report_reject)
resTheme = android.R.style.Theme_DeviceDefault_Dialog
}
httpSender {
uri = BuildConfig.ACRA_URL
basicAuthLogin = BuildConfig.ACRA_USER
basicAuthPassword = BuildConfig.ACRA_PASSWORD
httpMethod = HttpSender.Method.POST
}
mailSender {
mailTo = "keyboard@futo.org"
reportAsFile = true
reportFileName = "Crash.txt"
subject = "Keyboard Crash Report"
body = "I experienced this crash. My version: ${BuildConfig.VERSION_NAME}.\n\n(Enter details here if necessary)"
}
}
}