Run AVD Emulator without Android Studio

后端 未结 30 2051
不知归路
不知归路 2020-11-28 17:39

is there a way to run the emulator without starting the Android Studio first. Perhaps from the command line. I know that this feature was available in older versions and has

30条回答
  •  醉酒成梦
    2020-11-28 18:04

    Open your terminal and

    cd path_to/Android/Sdk/emulator
    

    And run the following to get the emulator name that you created before using android studio

    ./emulator -list-avds
    

    Replace $emulator_name with the one you want to launch and run

    ./emulator -avd $emulator_name
    

提交回复
热议问题