Reputation: 23
I never setted crashlytics before and when i follow officials instructions https://firebase.google.com/docs/crashlytics/get-started?platform=ios&authuser=0#add-sdk i get stuck in the run script part crashlytics version 4.6.2
in the output i get a confirmation that crashlytics is setted but in the dashboard i see nothing
Upvotes: 1
Views: 2084
Reputation: 8904
To test this you can force a crash..
What you can do is...
touchupInside
event.fatalError()
So the crash report will be send to firebase and you can see the result on firebase dashboard with in 5 minutes(as per their doc.).
Also you need to set this flag in build setting of your project to generate dsym file for debug mode.
Also this has to be set in build phase
Upvotes: 2