Reputation: 1
In the documentation of react native cli there is processe to run react native cli app directly on physical device but I am confused that do we need Android studio to run my physical device as emulator or I can directly run my physical phone as emulator by connecting through usb debugging and typing the command given there
https://reactnative.dev/docs/running-on-device
Upvotes: 0
Views: 1706
Reputation: 635
You need to connect your phone via USB and turn on debugging mode.
You can check device connectivity via running the ADB command.
adb devices
if you see your device in the console then just simply run your application via
react-native-run-android
Upvotes: 1