Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS - Crashlytics - missing several crashes

I have problem with Crashlytics (and with crashes shown in Xcode -> Organizer) because I don't see many of crashes that I should. From testers I should have many crashes there but I don't have. I logged into iTunes Connect and get zipped dSYM files there and upload them to Crashlytics to see new crashes. But even if it said that there is one or more new crash after upload dSYM I dont see any new crash. It looks like most of crashes I dont see in Crashlytics. Why is that? I need to get logs/crashes from devices that runs app from TestFlight. I think with Objective-C and before bitcode it worked much better.

Edit: Is it possible that in another tool (from 3rd party company) there would be crashes that aren't in Apple Organizer? I am asking if I should try more tools from other companies. Maybe some of crashes are because of memory. Is it possible that these crashes aren't in reports?

Thanks

like image 552
Libor Zapletal Avatar asked Aug 04 '17 09:08

Libor Zapletal


2 Answers

Fabric shows 1 crash 'row' for each crash, the number of crashes is in the same row. crash_row

But remember, crashes are only send to crashlytics if the user opens the app again.

You could also test Crashlytics by using: Crashlytics.sharedInstance().crash()

like image 99
Gerrit Post Avatar answered Oct 21 '22 07:10

Gerrit Post


First make sure you have uploaded your dsym files to your crashlytics dashboard, Check this

enter image description here

Click on the encircled part

enter image description here

Then on your Xcode > Window > Organizer

enter image description here

Tap Download dSYMs, When the download is complete right click your Archive and click Show in Finder, then right click the package and tap Show Package Contents

enter image description here

Open the dSYMs folder, then you can just drag and drop those dSYMs to the Crashlytics Dashboard

like image 38
Zonily Jame Avatar answered Oct 21 '22 05:10

Zonily Jame