react-native-exception-handler
react-native-exception-handler copied to clipboard
A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions.
I am trying to send an error to a webhook on native crashes. Everything works fine on iOS but does not work on android. Does anyone have a solution? I...
Hi guys, setJSExceptionHandler is working fine (without setNativeExceptionHandler) , but when I use setNativeExceptionHandler, I can't even run my app (it throw error before even starting the app): null is...
I get the native UI when the [rn-test-exception-handler](https://github.com/master-atul/rn-test-exception-handler) is called, and the JS code executes till the fetch, where it stops without error of any kind. ```js const nativeErrorHandler =...
Hello, I am able to catch JS as well as Native exceptions in Debug APK. But the exceptions are not caught in Release APK. Can you please suggest I am...
Hello All, I use `setNativeExceptionHandler` to handle the native error using the advanced way of 3 parameters: `setNativeExceptionHandler(exceptionHandler, false, true);` when the app crashes the default native module appears, but...
I am not sure what's causing this error. When I set JS error handler it throws this error ``` Maximum call stack size exceeded (native stack depth) ``` so I...
Trying to use in conjunction with react-native-restart however once the app has crashed. None of the buttons work. ` setJSExceptionHandler((error, isFatal) => { jsExceptionHandler(error, isFatal) })` ` function jsExceptionHandler(error, isFatal...
I'm experiencing this when have both this lib and mParticle-apple-sdk. So the reason is SignalHandler callback is enumerated in both implementations. Could it be splitted somehow? I temporary fixed by...
I am using setNativeExceptionHandler and when app crash call back not triggering. I am using below code in index file. ``` setNativeExceptionHandler((errorString) => { console.log('setNativeExceptionHandler'); fetch('http://localhost:3000/logvalues').then(res => res.json()) .then(res =>...
bugfix for wrong userInfo