You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}//This will override the default behaviour of displaying the recover activity.
232
+
}
233
+
234
+
```
235
+
208
236
**Modifying iOS NativeException handler UI** (NATIVECODEHASTOBEWRITTEN) *recommended that you dothis in XCode*
209
237
210
238
UnlikeAndroid, in the case of iOS, there is no way to restart the app if it has crashed. Also, during a **Native_Exceptions** the UI becomes quite unstable since the exception occured on the main UI thread. Hence, none of the click or press handlers would work either.
@@ -410,6 +438,10 @@ This is specifically occuring when you use [wix library](http://wix.github.io/re
### Previously defined exception handlers are not executed anymore
442
+
443
+
A lot of frameworks (especially analytics sdk's) implement global exception handlers. In order to keep these frameworks working while using react-native-exception-hanlder, you can pass a boolean value as third argument to `setNativeExceptionHandler(..., ..., true`) what will trigger the execution of the last global handler registered.
0 commit comments