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?
source
share