Skip to content

Commit e339493

Browse files
authored
Merge branch 'master' into dependabot/gradle/kotlinx-coroutines-1.9.0
2 parents 43b3b3c + d34e99a commit e339493

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ plugins {
7676
}
7777
```
7878

79-
Then mark you custom classes `@Serializable`:
79+
Then mark your custom classes `@Serializable`:
8080

8181
```kotlin
8282
@Serializable

firebase-crashlytics/src/iosMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ public actual class FirebaseCrashlytics internal constructor(internal val ios: F
3737
}
3838
public actual fun didCrashOnPreviousExecution(): Boolean = ios.didCrashDuringPreviousExecution()
3939
public actual fun setCustomKey(key: String, value: String) {
40-
ios.setCustomValue(key, value)
40+
ios.setCustomValue(value, key)
4141
}
4242
public actual fun setCustomKey(key: String, value: Boolean) {
43-
ios.setCustomValue(key, value.toString())
43+
ios.setCustomValue(value.toString(), key)
4444
}
4545
public actual fun setCustomKey(key: String, value: Double) {
46-
ios.setCustomValue(key, value.toString())
46+
ios.setCustomValue(value.toString(), key)
4747
}
4848
public actual fun setCustomKey(key: String, value: Float) {
49-
ios.setCustomValue(key, value.toString())
49+
ios.setCustomValue(value.toString(), key)
5050
}
5151
public actual fun setCustomKey(key: String, value: Int) {
52-
ios.setCustomValue(key, value.toString())
52+
ios.setCustomValue(value.toString(), key)
5353
}
5454
public actual fun setCustomKey(key: String, value: Long) {
55-
ios.setCustomValue(key, value.toString())
55+
ios.setCustomValue(value.toString(), key)
5656
}
5757

5858
@Suppress("UNCHECKED_CAST")

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ firebase-bom = "33.2.0"
88
gitlive-firebase-java-sdk = "0.4.6"
99
gson = "2.11.0"
1010
junit = "4.13.2"
11-
kotlin = "2.0.20"
11+
kotlin = "2.0.21"
1212
kotlinx-coroutines = "1.9.0"
1313
kotlinx-serialization = "1.7.2"
1414
kotlinx-binarycompatibilityvalidator = "0.16.3"

0 commit comments

Comments
 (0)