I've developed an app using Create-React-Native-App and usually would test the work using 'npm run android' where Expo client is installed on my device which would load the app once my laptop and mobile is on same WiFi network.
When I used create-react-native-app, the directory structure it laid down looks like this (src directory is created by me):
appDirectory\
--.expo\
--node_modules\
--src\
--.bablerc
--.flowconfig
--.gitignore
--.watchmanconfig
--.App.js
--app.json
--App.test.js
--package.json
--README.md
--yarn.lock
Now that I am done developing the app, I tried running this command: react-native run-android to install an APK to my device and create environment for both Android and iOS with their respective entry points like index.android.js/index.ios.js but I don't see any of this and all I get as output is:
Scanning folders for symlinks in D:\ROHIT\Projects\appDirectory\node_modules (141ms)
Please help me out with this as I am pretty new to React-Native and unable to understand to generate APK for testing and production, to be installed on various devices for pilot testing
Thanks and best, Rohit