How to open the AVD manager on Ubuntu Linux from the command line?

后端 未结 10 1156
别那么骄傲
别那么骄傲 2020-12-01 07:37

How to open the AVD manager on Ubuntu Linux from the command line?

相关标签:
10条回答
  • 2020-12-01 08:10

    For me, ./android avd worked, where android was the shell script under android-studio/sdk/tools.

    0 讨论(0)
  • 2020-12-01 08:13

    Use android avd to open the AVD Manager.

    0 讨论(0)
  • 2020-12-01 08:19

    ./android avd is deprecated use ~/Android/Sdk/tools/bin/avdmanager --help instead!

    or if it is easier for you, move to the directory and use it like in the old version:

    cd ~/Android/Sdk/tools/bin/
    ./avdmanager

    check new [options] with --help or -h before you use avdmanager

    first occurence in Android Studio 2.3 !

    0 讨论(0)
  • 2020-12-01 08:19

    Android studio:v3.0.1

    Get name:

    /home/user/Android/Sdk/tools$ android list avd
    

    Start emulator:

    /home/user/Android/Sdk/tools$ emulator -avd Nexus_6_API_23
    
    0 讨论(0)
提交回复
热议问题