Answers for "how crashlytics can be used in android studio"

4

how crashlytics can be used in android studio

val crashButton = Button(this)
crashButton.text = "Test Crash"
crashButton.setOnClickListener {
   throw RuntimeException("Test Crash") // Force a crash
}

addContentView(crashButton, ViewGroup.LayoutParams(
       ViewGroup.LayoutParams.MATCH_PARENT,
       ViewGroup.LayoutParams.WRAP_CONTENT))
Posted by: Guest on October-25-2021

Code answers related to "how crashlytics can be used in android studio"

Browse Popular Code Answers by Language