Question. How to run an android emulator without Android Studio ?

meer_the_coder

Administrator
Staff member
Question / Problem:

How to run an android emulator without Android Studio ?

Answer / Soltution:

you can create a new .bat file and copy and paste this code the correct location of your emulator path and emulator name.

Code:
@echo off
rem E:\Android\android-sdk\emulator\emulator.exe -avd Pixel3a
E:\Android\android-sdk\emulator\emulator.exe @Pixel3aAPI30 -writable-system
Thanks
 
Top