Running On Device React Native
Running On Device React Native
Running On Device
It's always a good idea to test your app on an actual device before releasing it to your
users. This document will guide you through the necessary steps to run your React
Native app on a device and to get it ready for production.
INFO
If you used create-expo-app to set up your project, you can run your app on a device in
Expo Go by scanning the QR code that is displayed when you run npm start . Refer to
the Expo guide for running your project on your device for more information.
Android iOS
Most Android devices can only install and run apps downloaded from Google Play, by
default. You will need to enable USB Debugging on your device in order to install your
app during development.
To enable USB debugging on your device, you will first need to enable the "Developer
options" menu by going to Settings → About phone → Software information and then
tapping the Build number row at the bottom seven times. You can then go back to
Settings → Developer options to enable "USB debugging".
Let's now set up an Android device to run our React Native projects. Go ahead and
plug in your device via USB to your development machine.
Now check that your device is properly connecting to ADB, the Android Debug Bridge,
by running adb devices .
https://reactnative.dev/docs/running-on-device 1/4
4/19/23, 7:44 AM Running On Device · React Native
$ adb devices
List of devices attached
emulator-5554 offline # Google emulator
14ed2fcc device # Physical device
Seeing device in the right column means the device is connected. You must have only
one device connected at a time.
Type the following in your command prompt to install and launch your app on the
device:
Hint: You can also use the React Native CLI to generate and run a Release build (e.g.
npx react-native run-android --variant=release ).
You can use this method if your device is running Android 5.0 (Lollipop) or newer, it has
USB debugging enabled, and it is connected via USB to your development machine.
$ adb devices
https://reactnative.dev/docs/running-on-device 2/4
4/19/23, 7:44 AM Running On Device · React Native
You can now enable Live reloading from the Developer menu. Your app will reload
whenever your JavaScript code has changed.
You can also connect to the development server over Wi-Fi. You'll first need to install
the app on your device using a USB cable, but once that has been done you can debug
wirelessly by following these instructions. You'll need your development machine's
current IP address before proceeding.
Open the command prompt and type ipconfig to find your machine's IP address
(more info).
1. Make sure your laptop and your phone are on the same Wi-Fi network.
2. Open your React Native app on your device.
3. You'll see a red screen with an error. This is OK. The following steps will fix that.
4. Open the in-app Developer menu.
5. Go to Dev Settings → Debug server host & port for device.
6. Type in your machine's IP address and the port of the local dev server (e.g.
10.0.1.1:8081).
7. Go back to the Developer menu and select Reload JS.
You can now enable Live reloading from the Developer menu. Your app will reload
whenever your JavaScript code has changed.
https://reactnative.dev/docs/running-on-device 3/4
4/19/23, 7:44 AM Running On Device · React Native
https://reactnative.dev/docs/running-on-device 4/4