Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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