10

I want to retrieve a list of android emulators from the terminal. How do I achieve this? I'm using ubuntu.

Harshal Kshatriya
  • 5,630
  • 11
  • 44
  • 60

2 Answers2

20

Type this in command line:

emulator -list-avds
Uriel Frankel
  • 14,304
  • 8
  • 47
  • 69
2

go the android sdk path-> then go to the platform-tools -> type the command as "adb devices" you will be able to get the list of connected devices or emulators which are currently running.

  • 2
    "adb devices" helps me in retrieving a list of all the devices that are connected. But what if I dont know that I have an emulator 'em42'? I got the answer. You should look into 'root/.android/avd' folder. Thanks for trying to help. :) – Harshal Kshatriya Feb 06 '13 at 07:18