I\'m using React.JS and when I do react-native run-android (with my device plugged in) I see a blank page. When I shake the device and select Debug JS Rem
react-native run-android
Debug JS Rem
Try adding this
package.json
devDependencies: { //... "@react-native-community/cli-debugger-ui": "4.7.0" }
Terminate everything.
npm install
npx react-native start
npx react-native run-android
Reference: https://github.com/react-native-community/cli/issues/1081#issuecomment-614223917