I am developing news app and I am new to firebase Crashlytics I want to force to crash and I want to get a report of the crash but I am not getting any crash reports how can I achieve that
below my Implementation
binding.root.setOnClickListener { v ->
FirebaseCrashlytics.getInstance()
val intent = Intent(v.context, DetailActivity::class.java)
intent.putExtra(urlKey, articleList[position].url)
v.context.startActivity(intent)
}
below my firebase crashlytics console screenshot my firebasecrashlytics console
I want to know where I am making mistake how can I force to crash my app