Firebase Crashlytics not showing crash report in console dashboard swift

salman siddiqui picture salman siddiqui · Jan 3, 2018 · Viewed 23.1k times · Source

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.

Answer

Luciano Sclovsky picture Luciano Sclovsky · Jan 4, 2018

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.