After showing
"[Firebase/Crash][I-CRA000004] Successfully initialised"
in the xcode console.No crash report is submitted, even after crashing the application and firebase console is showing
"App detected we’re waiting for a crash"
[enter image description here] https://i.stack.imgur.com/CJmlG.png
We have followed every step as per the firebase doc
- We have added google service info.plist.
- We have added the script along with its input files.
- We have added "${PODS_ROOT}/FirebaseCrashlytics/run" script in the end
- We have tried both cocoa pods and packages
2
Answers
You might need to set up Xcode to upload dSYM files to firebase to see the crashes on firebase dashboard else those will be there in the dSYMS section. You can see the steps here to set up Xcode for this – https://firebase.google.com/docs/crashlytics/get-started?platform=ios.
Install
FirebaseCrashlytics
instead ofFirebaseCrash
.The initialization message posted comes from the deprecated FirebaseCrash instead of the supported FirebaseCrashlytics.
Share the Podfile if you’re still stuck.