We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eba86b commit 170f889Copy full SHA for 170f889
crashlytics/app/src/main/java/com/google/firebase/example/crashlytics/kotlin/MainActivity.kt
@@ -82,7 +82,10 @@ class MainActivity : AppCompatActivity() {
82
try {
83
methodThatThrows()
84
} catch (e: Exception) {
85
- Firebase.crashlytics.recordException(e, mapOf("key_1" to "value_1", "key_2" to "value_2"))
+ Firebase.crashlytics.recordException(
86
+ e,
87
+ mapOf("key_1" to "value_1", "key_2" to "value_2"),
88
+ )
89
// handle your exception here
90
}
91
// [END crash_log_caught_ex_custom_keys]
0 commit comments