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
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