Android Studio Emulator not loading Windows 10

前端 未结 1 364
我寻月下人不归
我寻月下人不归 2021-02-06 00:29

I have a fresh install of android studio on Windows 10, with all the packages for android api 22. When I run the emulator I get the following message

C:\\Users\\         


        
相关标签:
1条回答
  • 2021-02-06 01:25

    HAXM, the Intel Android Virtualization Technology is incompatible with Hyper-V. Turn off Hyper-V and give it a go again. Hyper-V will often be installed if you have installed Visual Studio with Windows Phone tools.

    Or from an admin command prompt run the following. Note to get an admin cmd prompt, right-mouse the windows icon, click Command Prompt (Admin ).

    To turn off Hyper-V run this: bcdedit /set hypervisorlaunchtype off and then reboot

    To turn Hyper-V back on, run this: bcdedit /set hypervisorlaunchtype auto And then reboot

    You can turn off Hyper-V in the services menu (type "Services" in the Search thingy), and also use the Services menu to turn it back on. Even though it may not be necessary I still reboot after doing it this way.

    Blog post on this here - http://www.devfish.net/post/2015/08/18/error-x86-emulation-currently-requires-hardware-acceleration-android-on-windows.aspx

    Healy in Tampa

    0 讨论(0)
提交回复
热议问题