Raul Marquez
Raul Marquez

Reputation: 1116

Emulator in Android Studio's AVD won't start correctly

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:

enter image description here

Virtualization is enabled and HAXM is installed

enter image description here

enter image description here

enter image description here

When launching the emulator it only gets to about where the red square is, then does nothing and returns to the virtual devices list: enter image description here

Also tried launching it with flutter itself by command line and in VS Code with no luck: enter image description here

enter image description here

And I don't get any error messages.

Anyone know where to go from here?

Thanks.

Upvotes: 0

Views: 214

Answers (1)

Adnan karim
Adnan karim

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

Related Questions