Firebase Crashlytics在控制台仪表板中不显示崩溃报告

问题描述:

我已经在Firesbase仪表板上设置了所有这些步骤和Bundel ID,并尝试了多次崩溃,但未得到任何报告。

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. 在Build阶段添加了运行脚本: $ {PODS_ROOT} / Fabric / run

  3. 调试信息格式:带有dSYM文件的DWARF

  4. 在模拟器中按以下步骤运行

  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]崩溃];
    }

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

单击play_arrow构建,然后在Xcode中运行当前方案以在设备或模拟器上构建您的应用。

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


我采取了与您相同的步骤,并认为我遇到了问题,直到我意识到崩溃会延迟出现在控制台上。就我而言,这大约需要40分钟才能显示。

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.

这里是一个博客发布