Hyper V上的Android模拟器错误

问题描述 投票:26回答:4

微软最近宣布支持在hyper V上运行android模拟器(https://blogs.msdn.microsoft.com/visualstudio/2018/05/08/hyper-v-android-emulator-support/

我正在尝试使用以下命令行在我的Windows 10(2018年4月更新)支持Hyper V的计算机上启动Android模拟器27.2.9.0:

> cd C:\Users\<username>\AppData\Local\Android\sdk\emulator\lib\qt\lib
> ..\..\..\emulator -avd <avd name> -feature WindowsHypervisorPlatform

我收到以下错误消息:

emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure Windows Hypervisor Platform (WHPX) is properly installed and usable.
CPU acceleration status: Please disable Hyper-V before using the Android Emulator.  Start a command prompt as Administrator, run 'bcdedit /set hypervisorlaunchtype off', reboot.

我已将“WindowsHypervisorPlatform = on”行添加到C:\ Users \ .android \ advancedFeatures.ini,但这没有帮助。

我错过了什么?

android-emulator windows-10 hyper-v
4个回答
42
投票

好吧,事实证明我启用了“Hyper-V”,但未启用“Windows Hypervisor平台”。 (谁知道这些是两件不同的事情!)。启用后,模拟器开始工作。

enter image description here


5
投票

我做了一些事情让我的电脑正常工作。

  • 安装Visual Studio 15.8 Preview 1或更高版本
  • 在Visual Studio Preview中删除并重新安装模拟器
  • 我从android sdk管理器中的“Extras”中删除了HAXM(来自visual studio菜单)。
  • advancedFeatures.ini的路径是C:\ Users \ Your Username \ advancedFeatures.ini来设置WindowsHypervisorPlatform = on
  • 打开或关闭“打开Windows”功能,然后选择“Hyper-V”和“Windows Hypervisor平台”复选框。 (需要重启)

微软还有另一个指南:https://docs.microsoft.com/en-us/xamarin/android/get-started/installation/android-emulator/hardware-acceleration?tabs=vswin


4
投票

我只需卸载“Hyper-V Hypervisor”,模拟器就开始工作了。我正在使用Windows 10(1803)。如果我安装“Hyper-V Hypervisor”,仿真器将停止工作。

enter image description here


4
投票

使用最新的Android Studio,您不需要AMD上的Hyper-V。

只需启用“Windows Hypervisor平台”(打开和关闭屏幕功能),x86图像就会自动变为可用

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.