Skip to content

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

New issue

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

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

Already on GitHub? # to your account

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() }, }, ] ) }

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

No branches or pull requests

1 participant