Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/gradle/kotlinx-coroutines-1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nbransby authored Dec 9, 2024
2 parents 43b3b3c + d34e99a commit e339493
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ plugins {
}
```

Then mark you custom classes `@Serializable`:
Then mark your custom classes `@Serializable`:

```kotlin
@Serializable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@ public actual class FirebaseCrashlytics internal constructor(internal val ios: F
}
public actual fun didCrashOnPreviousExecution(): Boolean = ios.didCrashDuringPreviousExecution()
public actual fun setCustomKey(key: String, value: String) {
ios.setCustomValue(key, value)
ios.setCustomValue(value, key)
}
public actual fun setCustomKey(key: String, value: Boolean) {
ios.setCustomValue(key, value.toString())
ios.setCustomValue(value.toString(), key)
}
public actual fun setCustomKey(key: String, value: Double) {
ios.setCustomValue(key, value.toString())
ios.setCustomValue(value.toString(), key)
}
public actual fun setCustomKey(key: String, value: Float) {
ios.setCustomValue(key, value.toString())
ios.setCustomValue(value.toString(), key)
}
public actual fun setCustomKey(key: String, value: Int) {
ios.setCustomValue(key, value.toString())
ios.setCustomValue(value.toString(), key)
}
public actual fun setCustomKey(key: String, value: Long) {
ios.setCustomValue(key, value.toString())
ios.setCustomValue(value.toString(), key)
}

@Suppress("UNCHECKED_CAST")
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ firebase-bom = "33.2.0"
gitlive-firebase-java-sdk = "0.4.6"
gson = "2.11.0"
junit = "4.13.2"
kotlin = "2.0.20"
kotlin = "2.0.21"
kotlinx-coroutines = "1.9.0"
kotlinx-serialization = "1.7.2"
kotlinx-binarycompatibilityvalidator = "0.16.3"
Expand Down

0 comments on commit e339493

Please sign in to comment.