Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expo run on android emulator using windows 10

Can I run android emulator without an android phone? I have installed android studio and I've already installed android virtual device. However, when I try to run it, it gives an error like this :

Couldn't start project on Android: Error running adb: No Android device found. Please connect a device and follow the instructions here to enable USB debugging: https://developer.android.com/studio/run/device.html#developer-device-options. If you are using Genymotion go to Settings -> ADB, select "Use custom Android SDK tools", and point it at your Android SDK directory.

I just want to see the emulator in my pc without usb. I have an iPhone but it just shows up in my phone not in my pc using expo scan barcode. I don't want to do that because in my opinion it's not comfortable for debugging etc. I am using windows in my pc so I can't use iOS for emulator.

how to run expo android emulator on windows?

like image 406
Faris Dewantoro Avatar asked Oct 11 '18 03:10

Faris Dewantoro


People also ask

Can Android Emulator run on Windows 10?

To install Android Emulator on Windows 10, the user needs to download the setup file of the Emulator. Once they have downloaded the setup file on their PC, they need to run the setup file and complete the process. As soon as the setup completes the installation of the Android Emulator, it is ready for use.

How do you run React Native Expo on Android Emulator?

Running your React Native application Install the Expo client app on your iOS or Android phone and connect to the same wireless network as your computer. On Android, use the Expo app to scan the QR code from your terminal to open your project. On iOS, use the built-in QR code scanner of the Camera app.

Do you need Android Studio for EXPO?

TL;DR Expo provides an expanded SDK and hosting services for your mobile app development without the need of touching XCode or Android Studio again (in most cases).


3 Answers

Yes you can:-(With zero android studio config)

  1. Install expo-cli globally.
  2. Install android Studio.
  3. Create a project by running expo-cli init
  4. No need of any configuration on android Studio.
  5. Open existing Project from android studio

Open the expo project

  1. then Open the created expo Project it will be available as an android project with a android logo on it
  2. then open the AVD Manager run avd manager

  3. Download and install whichever device you want but see to that its above android N and do it for x86

  4. after Installing the desired emulator

enter image description here

  1. run the emulator before running the project
  2. then run expo start to start the Project
  3. Go to the metro builder and say run android enter image description here

  4. if it doesn't run on the first go or if you get error close the project from emulator from recents and do a run on android again from metro builder don't close project just the running project from recent on emulator

from here

  1. then it should work
like image 139
Snivio Avatar answered Oct 12 '22 00:10

Snivio


Maybe too late, but I found out that is simplier that what you think.

  1. Install your Android SDK (studio)
  2. Create new emulator: Go to Tools > AVD Manager > Create new virtual device (I chosen Nexus, Android 7)
  3. When you get new emulator installed try to find out list of it ( command: emulator -list-avds )
  4. !! If you do not have emulator in the path follow this commands in PowerShell:
    PATH = %PATH%;C:\Users\[YOURUSERPCNAME]\AppData\Local\Android\Sdk\platform-tools
    PATH= %PATH%;C:\Users\[YOURUSERPCNAME]\AppData\Local\Android\Sdk\emulator
    PATH= %PATH%;C:\Users\[YOURUSERPCNAME]\AppData\Local\Android\Sdk\tools\bin
  1. Run your emulator: emulator -avd [NAMEOFYOUREMULATOR] from the command emulator -list-avds
  2. When emulator runing go to your Expo root folder (wher package.json is) and run npm start
  3. Click on run in Run on Android device/emulator

Enjoy coding

Edit for Linux users

my linux usecase is as follow:

  1. Install Android studio and open it
  2. Install any emulator using AVD manager and try it's working
  3. Close studio and go to your android folder ~/Android/Sdk/(two options 'emulator/' or 'tools/'), basically you need to find emulator
  4. list item ./emulator -list-avds
  5. choose your emulator and run it ./emulator -avd <any emulator> if emulator not work use sudo if you do not get any options in Sdk folder but you installed emualtor than you did it propably as a superuser - then the easiest is to completely remove all android studio and install it again
like image 8
x-magix Avatar answered Oct 12 '22 00:10

x-magix


Delete the directory C:\Users\Rizwan.expo\android-apk-cache and opening the project on android again It will run

like image 3
ansofficially Avatar answered Oct 12 '22 02:10

ansofficially