Update AcraApplication.kt

This commit is contained in:
IndusAryan 2023-08-17 12:52:35 +05:30 committed by GitHub
parent cbdfc0ad06
commit 057c5909e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,10 +121,10 @@ class AcraApplication : Application() {
buildConfigClass = BuildConfig::class.java
reportFormat = StringFormat.JSON
reportContent = arrayOf(
reportContent = listOf(
ReportField.BUILD_CONFIG, ReportField.USER_CRASH_DATE,
ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL,
ReportField.STACK_TRACE
ReportField.STACK_TRACE,
)
// removed this due to bug when starting the app, moved it to when it actually crashes
@ -213,4 +213,4 @@ class AcraApplication : Application() {
}
}
}
}