Run AVD Emulator without Android Studio

后端 未结 30 2004
不知归路
不知归路 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 17:55

    If you are starting emulator for Flutter applications, then you can run below command -

    > flutter emulators --launch [Emulator ID]
    

    In my case, emulator id is Pixel_2_API_29 as i created it with AVD manager in Android studio. so the command in my case is below -

    > flutter emulators --launch Pixel_2_API_29
    

    Thanks

提交回复
热议问题