I\'ve created the project using the following command.
react-native init Awesome_Project
I\'ve started the packager using the following com
If you have appIdSuffix you should add it to the command for react native run command.
eg. react-native run-android --appIdSuffix beta
Should add shortcut to package.json and run via npm.
...
"scripts": {
...
"android-beta": "react-native run-android --appIdSuffix beta",
},
Then just run:
npm run android-beta