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
For Android, Use BackHandler to exit the App:
import React, { BackHandler } from 'react-native'; BackHandler.exitApp();