Reputation: 1116
I'm setting up a Flutter environment and all except my emulator isn't working.
I'm using Android Studio 3.6.2
This is the setup for the emulator in AVD:
Virtualization is enabled and HAXM is installed
When launching the emulator it only gets to about where the red square is, then does nothing and returns to the virtual devices list:
Also tried launching it with flutter itself by command line and in VS Code with no luck:
And I don't get any error messages.
Anyone know where to go from here?
Thanks.
Upvotes: 0
Views: 214
Reputation: 1067
After creating AVD from android studio. Open Command Prompt
and execute this command.
C:\Path_to_Android_Sdk\sdk\tools\emulator.exe -netdelay none -netspeed full -avd YOUR_AVD_DEVICE_NAME
Upvotes: 2