Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is it possible to restart the application from the modal? #164

Open
guybridge opened this issue Jun 29, 2022 · 0 comments
Open

Is it possible to restart the application from the modal? #164

guybridge opened this issue Jun 29, 2022 · 0 comments

Comments

@guybridge
Copy link

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 = true) { const msg = access(error, "message") ||Unknown Error: ${JSON.stringify(error, Object.getOwnPropertyNames(error))} if (isFatal) { showExceptionModal(msg) } }

function showExceptionModal(error) { Alert.alert( "Oops...", "It looks like something went wrong and we will need to restart the app.", [ { text: "Restart", onPress: () => { RNRestart.Restart() }, }, { text: "Logout", onPress: () => { AsyncStorage.setItem(REFRESH_TOKEN, "") RNRestart.Restart() }, }, ] ) }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant