• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help How to start an AVD independently, without first opening Android Studio?

James_Watson

Android Enthusiast
In Android Studio, I can launch Device Manager and then start a previously created Android Virtual Device.

What I want to know is, is it possible to start an AVD independently, without first opening Android Studio and launching Device Manager?

Thank you all in advance.
 
After searching online, I finally succeeded in starting an AVD from command line. Share with you all. :D

//list all avds' name
emulator -list-avds

//start an avd with its name
emulator -avd avd_name [ {-option [value]} … ]
or
emulator @avd_name [ {-option [value]} … ]
 
Back
Top Bottom