1

Going through this documentation here there is the following statement:

This tool is no longer supported. Instead use Android Studio to create AVDs and create projects, or use sdkmanager to view and install SDK packages from the command line.

So a question was arised. Is there a way to launch those new emulators (possibly via command line) without having to enter Android Studio and then selecting the AVD Manager menu from there?

ThanosFisherman
  • 5,626
  • 12
  • 38
  • 63

3 Answers3

1

You can control your Emulator and it's appearance or behavior using below syntax through the command-line.

Here's your emulator ${PATH_OF_YOUR_ANDROID_SDK}/tools/emulator

 emulator -avd <avd_name> [-<option> [<value>]] ... [-<qemu args>]

 emulator -list-avds

Launch the emulator:

emulator -avd yourEmulatorName 

For ex : emulator -avd Nexus_6_API_25

See this link to control the Emulator from the command-line.

Vinoth Vino
  • 9,166
  • 3
  • 66
  • 70
0

everything you need is here

emulator -avd <name>

check this

Community
  • 1
  • 1
Elias Fazel
  • 2,093
  • 16
  • 20
0

Blockquote Is there a way to launch the new emulators (possibly via command line) without having to enter Android Studio and then selecting the AVD Manager menu from there?

Yes, you can do it as usual via command line.

For instance,

C:\Development\Android\Sdk\tools\emulator.exe -netdelay none -netspeed full -avd Nexus_4_API_25
Wei
  • 1,028
  • 8
  • 27