update acra lib

This commit is contained in:
IndusAryan 2023-11-21 17:23:55 +05:30
parent 14ca70a5f5
commit 23e12bbec2
2 changed files with 3 additions and 4 deletions

View file

@ -200,8 +200,8 @@ dependencies {
implementation("com.github.albfernandez:juniversalchardet:2.4.0") // Subtitle Decoding
// Crash Reports (AcraApplication.kt)
implementation("ch.acra:acra-core:5.11.2")
implementation("ch.acra:acra-toast:5.11.2")
implementation("ch.acra:acra-core:5.11.3")
implementation("ch.acra:acra-toast:5.11.3")
// UI Stuff
implementation("com.facebook.shimmer:shimmer:0.5.0") // Shimmering Effect (Loading Skeleton)

View file

@ -38,7 +38,7 @@ import kotlin.concurrent.thread
import kotlin.system.exitProcess
class CustomReportSender : ReportSender {
// Sends crash logs to google forms, might give a false positive of a google tracker in app scans
// Sends crash logs to Google forms, Might give a false positive of having a Google Tracker in App Scans
override fun send(context: Context, errorContent: CrashReportData) {
println("Sending Crash Report")
@ -104,7 +104,6 @@ class ExceptionHandler(val errorFile: File, val onError: (() -> Unit)) :
}
exitProcess(1)
}
}
class AcraApplication : Application() {