Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Crashlytics not showing crash report in console dashboard swift

Tags:

I have setup all these steps and bundel id on Firesbase Dashboard and tried crash many times but not getting any report.

  1. pod 'Firebase/Core' pod 'Fabric', '~> 1.7.2' pod 'Crashlytics', '~> 3.9.3'
  2. In Build phase added run Script : "${PODS_ROOT}/Fabric/run"
  3. Debug Inforation Format : DWARF with dSYM File
  4. running in simulator with following steps

    • (IBAction)crashButtonTapped:(id)sender { [[Crashlytics sharedInstance] crash]; }

    • Click play_arrow Build and then run the current scheme in Xcode to build your app on a device or simulator.

    • Click stop Stop running the scheme or action in Xcode to close the initial instance of your app. This initial instance includes a debugger that interferes with Crashlytics.
    • Open your app again from the simulator or device. Touch Crash to crash the app.
like image 667
salman siddiqui Avatar asked Jan 03 '18 09:01

salman siddiqui


People also ask

How do I check my Firebase crash log?

Crashlytics associates the logs with your crash data and displays them in the Crashlytics page of the Firebase console, under the Logs tab.

How do I check my Crashlytics logs?

Once you have Crashlytics up and running in your app, you can navigate to Crashlytics in your Firebase Console underneath 'Quality' and start reviewing the reports as they come in. If this page still tells you to setup, build or run your app then you have not correctly setup Crashlytics in your app (see Usage).


1 Answers

I took the same steps as you and thought I had an issue until I realized there's a delay for the crashes to show up on the console. In my case it took about 40 minutes to appear.

Here's a blog post about it.

like image 140
Luciano Sclovsky Avatar answered Sep 25 '22 13:09

Luciano Sclovsky