Skip to content Skip to sidebar Skip to footer

React Native Failed To Launch Emulator

While trying to test the android app am creating with React native, I run into this error info Launching emulator... error Failed to launch emulator. Reason: No emulators found as

Solution 1:

In your scenario before running react native application you need to create emulator using Android Studio. You can view official documentation about running application on device by here

Before running your project make sure you have installed adb drivers - More

First of all create AVD using Android Studio.

Open your project android folder using Android Studio.

1. Click AVD Manager from Android Studioenter image description here2. Click Create Virtual Deviceenter image description here3. Select your device from device list and click Nextenter image description here4. Select the android os version from the available version list and click Nextenter image description here5. On last keep default settings on device and click Finishenter image description here

After that you can see your available android emulator device list from AVD Manager window.

* Before run your react native application make sure you have turn on and run the android emulator from android studio

enter image description here

After that run your project using react-native run-android

Solution 2:

You can run the command adb devices to check if there is any device attached. It should list atleast one device for it to work

Post a Comment for "React Native Failed To Launch Emulator"