Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the command to list the available avdnames

I know I can start the emulator avd by typing

emulator.exe @avdname 

But is there a command to list the available avdnames? Where are this avd configuration stored?

like image 908
Lukap Avatar asked Oct 20 '11 15:10

Lukap


People also ask

What tool is used to list Android Virtual Devices?

The avdmanager is a command line tool that allows you to create and manage Android Virtual Devices (AVDs) from the command line. An AVD lets you define the characteristics of an Android handset, Wear OS watch, or Android TV device that you want to simulate in the Android Emulator.


1 Answers

Using sdk/tools/emulator

This will list all available avds

emulator -list-avds 
like image 106
user1046762 Avatar answered Oct 12 '22 21:10

user1046762