'Firebase Crash Reporting automatically generates reports for fatal errors in android phone but not for iPhones?
I have setup firebase in my react native app.
But currently exceptions are not handled means not added any crashlytics logs or recorded errors
But for android app I am getting crashes in firebase but not for IOS.
Can someone explain this in detail?
Solution 1:[1]
Crashlytics may only be able to upload the data once the app starts again. Did you restart the app?
Solution 2:[2]
This can happen if you are testing while the Xcode debugger is attached. Check this document, it explains how to test this in iOS.
If that doesn't work, enable debug logging and check if something is causing issues. For this:
- After enabling debug mode, run the app.
- Then hit "stop" in Xcode.
- Run the app in the device and crash it
- Run the app again from Xcode
- Collect the output from Xcode
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Frank van Puffelen |
| Solution 2 |
