Crash handling is enabled by default, to let you capture all the sessions with crashes and see the corresponding crash logs.
By default, UXCam automatically detects crashes and ANRs to let you capture all the sessions with crashes and see the corresponding crash logs. You can also enable/disable crash handling, report non-fatal (handled) exceptions and events.
Control Crash Handling Events
If you want to disable UXCam from capturing sessions with crashes, you will need to call this API before startWithKey.
UXCam.disableCrashHandling(_ disabled: Bool)
UXCam.disableCrashHandling(bool disabled)
void UXCam.DisableCrashHandling(bool disable)
Note: If you faced issues like app freeze or crash while using your app in Xamarin; it might be caused due to conflict between Xamarin and UXCam exception handlers. Use DisableCrashHandling(true) to fix this issue.
RNUxcam.disableCrashHandling(bool disabled)
The API parameters are:
disable: Default false. Set true to disable crash recording.