No data in crashlytics firebase reported after 1 day

The iOS app has been working with firebase reports since several weeks. I added crashlytics 2 days ago following the official steps: https://firebase.google.com/docs/crashlytics/get-started?authuser=0
in fact, It seems that all I had to do was install these pods :

pod 'Fabric', '~> 1.7.2'  
pod 'Crashlytics', '~> 3.9.3'  

I also added "DWARF with dSYM file" for the debugging information format for both debugging and release settings

Now when I launch the application, I see in the log:

[Crashlytics] Version 3.9.3 (128)

Then I caused a crash from a manually launched application (not with a debugger), and I can see the following in the logs after restarting the application from xcode:
[Crashlytics: Crash: Reports] Packed report with identifier "9aeb11f6423b4f11b95a0f3263fc7510" to send
nothing more about crash

my question is: why don't I see any data in crashlytics firebase reports?

+4
source share
4 answers

You use the right pods for Crashlytics in Firebase - you need both tags Fabricand Crashlytics.

Firebase , https://firebase.google.com/docs/crashlytics/get-started?authuser=0. , Firebase Core , " , ".

, dSYM , . https://firebase.google.com/docs/crashlytics/find-missing-dsym?authuser=0 , dSYM, .

, Crashlytics Firebase vs Fabric.

+2

, . , pod 'Firebase/Crash' . , Crash Firebase.

+2

FYI , , . , , , "":

, , :

  • pods podfile.
  • pod install.
  • xcode.
  • .
  • DWARF dSYM.
  • , Crashlytics.sharedInstance(). crash().
  • , , , , . .
  • crashlytics.sharedInstance(). crash(), :
    x: Int? = nil
    y = 5 + x!

  • , , , , . Restart.

, , . , , .

+1

, . Crashlytics.sharedInstance().crash()

let x: Int? = nil
let y = 5 + x!

- .

Today I tried to implement Firebase Crashlytics in another application. But this time I run it on the device, not in the simulator. And for 5 minutes. I got the data on the toolbar.

So, my suggestion: Try running it on a real device, not in a simulator.

0
source

Source: https://habr.com/ru/post/1689744/


All Articles