Last active
August 21, 2019 02:34
-
-
Save hisetu/8c50e66ed67207d3a9b7f8f4177ee038 to your computer and use it in GitHub Desktop.
Start Android emulator by command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CALL %LOCALAPPDATA%\Android\sdk\emulator\emulator.exe -list-avds | |
@ECHO off | |
SET /P name=Enter Emulator Name: | |
CALL %LOCALAPPDATA%\Android\sdk\emulator\emulator.exe @%name% | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment