How to run AVD Manager on Mac

54,779

Solution 1

Eclipse -> Windows -> AVD Manager, You can make note of the button.

Eclipse shows both buttons (SDK and AVD Manager)

Am using -Eclipse SDK Version: 3.7.0

Solution 2

If you don't want to use Eclipse this will fire it up.

Under tools folder write the following:

./android avd

Solution 3

Today Eclipse has been replaced with Android Studio in the SDK bundle.

Android Studio for Mac installs the SDK in a subfolder in the user's Library folder, so the full command line to launch the AVD becomes:

~/Library/Android/sdk/tools/android avd

Solution 4

On newer versions of Android Studio, this should be done by running the avdmanager binary located on tools/bin/ (relative to the SDK root directory):

$ ~/Library/Android/sdk/tools/bin/avdmanager

The same applies to the SDK Manager:

$ ~/Library/Android/sdk/tools/bin/sdkmanager

Solution 5

avdmanager used only for create/move/remove avds.
GUI can be used only in Android Studio (I think GUI is a part of Idea plugin, not an independent app like before in Eclipse)

For run emulator from console use this:

For list available AVDs:

~/Library/Android/sdk/tools/emulator -list-avds

For run emulator:

~/Library/Android/sdk/tools/emulator @AVD_NAME
@ - required

Share:
54,779

Related videos on Youtube

user310291
Author by

user310291

nada !

Updated on July 09, 2022

Comments

  • user310291
    user310291 almost 2 years

    I tried command line in tools directory within terminal by typing android and

    and bash says it cannot find the command. When I type ls I can see android.

    Also am I obliged to use command line. Why Eclipse does only show a button for running SDK Manager which is not used often instead of AVD Manager ?

    • yorkw
      yorkw about 12 years
      What SDK version are you using? SDK and AVD Manager in Eclipse has been splited into two separate bottons since recent release.
    • stolzem
      stolzem about 12 years
      For the command line: If you want to start a program/tool/script in a directory, which is not in the PATH (echo $PATH), then type ./<program>. In your case ./android
    • t9mike
      t9mike over 11 years
      "android avd" will launch just the device manager.
    • Khurshid Ansari
      Khurshid Ansari about 3 years
  • infografnet
    infografnet almost 9 years
    I agree. It helped me too.
  • oluckyman
    oluckyman about 7 years
    ~/Library/Android/sdk/tools/bin/avdmanager does not run the GUI app. How to open GUI AVD Manager?
  • James Nguyen
    James Nguyen about 6 years
    deprecated at the moment.
  • adamdport
    adamdport almost 4 years
    5 years later even this isn't a thing anymore. avdmanager has its own command
  • Justin
    Justin over 2 years
    Invalid or unsupported command "avd"