Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

start emulator from command line

@Get list of available emulators:
$ emulator -list-avds

Output:
2.7_QVGA_API_21
2.7_QVGA_API_22
Nexus_10_API_30
...

@Start emulator
$ emulator -avd Nexus_10_API_30
Comment

Run emulator with terminal

cd C:UsersusernameAppDataLocalAndroidSdkemulator  // terminal path
emulator -list-avds     //to get avd names
emulator -avd Pixel_2_API_30   // to run avd
Comment

launch emulator from terminal

cd C:UsersusernameAppDataLocalAndroidSdkemulator  // terminal path
emulator -list-avds     //to get avd names
emulator -avd Pixel_2_XL_API_30   // to run avd or
emulator -avd Pixel_2_XL_API_30 -gpu swiftshader_indirect // for software gpu
Comment

run emulator from command line

emulator -avd @name-of-your-emulator
Comment

run emulator from command line

emulator @DEVICE_NAME
Comment

PREVIOUS NEXT
Code Example
Shell :: check git version linux 
Shell :: install ngrok ubuntu 
Shell :: linux filter groups 
Shell :: pytorch install using conda 
Shell :: restart wpa raspberrypi 
Shell :: bash: /var/lib/snapd/snap/bin/docker-compose: No such file or directory 
Shell :: installing SQLite3 on ubuntu 20.04 
Shell :: get kubernetes join command 
Shell :: git push existing repo 
Shell :: how to install specific version of bootstrap using npm 
Shell :: set remote url git 
Shell :: -bash: service: command not found 
Shell :: for i in range bash 
Shell :: save git password and username once 
Shell :: get current working directory powershell 
Shell :: pip install postgresql 
Shell :: flutter linux cmake error 
Shell :: django knox install 
Shell :: install edge on ubuntu 
Shell :: git push all branches 
Shell :: range of random numbers bash 
Shell :: clone specific branch 
Shell :: pyinstaller icon image 
Shell :: install ruby and rails on mac 
Shell :: generate ssl certbot nginx 
Shell :: start jupyter notebook from terminal 
Shell :: virtualenv-win remove installed virtual environment 
Shell :: how to get git username and password 
Shell :: linux remove all node_modules folders 
Shell :: cmake: not found 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =