@@ -37,22 +37,22 @@ public actual class FirebaseCrashlytics internal constructor(internal val ios: F
37
37
}
38
38
public actual fun didCrashOnPreviousExecution (): Boolean = ios.didCrashDuringPreviousExecution()
39
39
public actual fun setCustomKey (key : String , value : String ) {
40
- ios.setCustomValue(key, value )
40
+ ios.setCustomValue(value, key )
41
41
}
42
42
public actual fun setCustomKey (key : String , value : Boolean ) {
43
- ios.setCustomValue(key, value.toString())
43
+ ios.setCustomValue(value.toString(), key )
44
44
}
45
45
public actual fun setCustomKey (key : String , value : Double ) {
46
- ios.setCustomValue(key, value.toString())
46
+ ios.setCustomValue(value.toString(), key )
47
47
}
48
48
public actual fun setCustomKey (key : String , value : Float ) {
49
- ios.setCustomValue(key, value.toString())
49
+ ios.setCustomValue(value.toString(), key )
50
50
}
51
51
public actual fun setCustomKey (key : String , value : Int ) {
52
- ios.setCustomValue(key, value.toString())
52
+ ios.setCustomValue(value.toString(), key )
53
53
}
54
54
public actual fun setCustomKey (key : String , value : Long ) {
55
- ios.setCustomValue(key, value.toString())
55
+ ios.setCustomValue(value.toString(), key )
56
56
}
57
57
58
58
@Suppress(" UNCHECKED_CAST" )
0 commit comments