Harshal Kshatriya
Harshal Kshatriya

Reputation: 5850

How to get list of android emulators through terminal?

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

Upvotes: 10

Views: 14107

Answers (2)

Uriel Frankel
Uriel Frankel

Reputation: 14612

Type this in command line:

emulator -list-avds

Upvotes: 22

change_is_necessity
change_is_necessity

Reputation: 707

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.

Upvotes: 3

Related Questions