im trying to set up crashlytics in my project. i ...
# android
l
im trying to set up crashlytics in my project. i went through all the intitialization steps. set up a firebase project, as well as a fabric project. linked the projects. when i go to those dashboards it shows 0 crashes. Im trying to trigger a crash like so
Crashlytics.logException(IOException())
Why doesnt this force close the app and why doesnt it show a crash in either console?
e
I think it is because the
Exception
is not fatal, so the app doesn’t crash and no reports on the console. You can try replacing
Crashlytics.logException(IOException())
with simple
throw IOException()
.
l
yep it was just a different view in the console. thanks