Skip to content

Commit

Permalink
Crashlytics needs to be set up in a coroutine
Browse files Browse the repository at this point in the history
  • Loading branch information
mtotschnig committed Nov 18, 2023
1 parent f5c7bcb commit 4f060bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

ext {
versionCode = 666
versionCode = 667
versionName = '3.6.8'
compileSdkVersion = 34
minSdkVersion = 21
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class AcraCrashHandler : CrashHandler() {
}
}

override fun setupLogging(context: Context) {
override suspend fun setupLogging(context: Context) {
setKeys(context)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class CrashHandler {
private var currentBreadCrumb: String? = null

open fun onAttachBaseContext(application: MyApplication) {}
open fun setupLogging(context: Context) {}
open suspend fun setupLogging(context: Context) {}
open fun putCustomData(key: String, value: String) {}
open fun setEnabled(enabled: Boolean) {}

Expand Down
2 changes: 1 addition & 1 deletion myExpenses/src/main/res/values/version_info.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string-array name="versions">
<item>666;3.6.8</item>
<item>667;3.6.8</item>
<item>662;3.6.7</item>
<item>657;3.6.6</item>
<item>653;3.6.5</item>
Expand Down

0 comments on commit 4f060bb

Please sign in to comment.