If my React Native app fails to connect to its backend, I show an Alert with an OK button. If this happens, there\'s no point in the app continuing to run, so I\'d like to s
This npm module helped me with the same issue - react-native-exit-app
import RNExitApp from 'react-native-exit-app'; ... RNExitApp.exitApp(); ...