在更新到Android Studio 2后,当我试图运行我的应用程序并选择一个模拟器时,我等待模拟器启动,它突然被杀死。我可以看到模拟器进程几分钟,但从来没有GUI。在Android studio中,我得到了错误

android studio Error while waiting for the device: The emulator process for AVD was killed

即使我在Android Studio之外运行模拟器也会发生这种情况。我试用了Android 6和基于Android 4.4的模拟器。 在Windows 7 x64 PC上运行。类似于另一个StackOverflow帖子被关闭。我尝试了各种ram、VM堆和分辨率设置。


当前回答

我通过更新Android模拟器解决了同样的问题。

步骤:

1. In Android Studio Go to TOOLS
2. SDK Manager
3. Android SDK
4. SDK Tools
5. Update the Android Emulator.

然后它将运行。

查看这个参考https://stackoverflow.com/a/64384372/13952516

其他回答

去工具>android>sdkmanager和更新模拟器和安装相关的API级别。这对我很有效

如果从上面看,没有解决办法。然后下载 x86和x64版本,并安装它们。完成此操作后,再次运行模拟器,一切正常。

下载链接:https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0

I have been struggling with the The emulator process for AVD Pixel_2_API_30 was killed for a while now. I was trying to launch a Pixel 2 API 30 running android 11.0, I tried all the possible solutions but nothing seemed to work. I decided t use a different setup e.g. Pixel 2 API 28 running android 9.0, and it worked perfectly. I am not sure what causes the bug in the higher-level API or android version though... So my suggestion is to change the API and android version IF all of the other solutions didn't work.

我最近在我的Mac 10.14.6 Mojave上遇到了这个问题,错误与gokhhan -arik https://stackoverflow.com/a/66422209/15311922中的一个答案中的错误完全相同。

在他的案例中,他通过更新到11.2.1 Big Sur解决了这个问题。 我的解决方法不同。

从终端运行: /Users/<username>/Library/Android/sdk/emulator/emulator emulator -avd <Pixel_4_API_29> .

我的错误信息:


dyld: Library not loaded: /System/Library/Frameworks/IOUSBHost.framework/Versions/A/IOUSBHost

  Referenced from: /Users/<username>/Library/Android/sdk/emulator/qemu/darwin-x86_64/qemu-system-x86_64

  Reason: image not found

Abort trap: 6

我设法从我朋友的笔记本电脑上获得IOUSBHost.framework,然后将其上传到谷歌驱动器(zip格式),然后执行以下步骤:

重启mac并命令+R显示恢复选项,选择Safari图标以恢复模式启动Safari 在safari中,打开我之前上传的谷歌驱动器链接,然后直接将zip文件下载到/System/Library/Frameworks/(它会自动解压缩) 重启笔记本电脑。

现在,你可以使用模拟器无需更新到大苏尔。

这里是IOUSBHost.framework.zip。使用它的风险由你自己承担。https://drive.google.com/file/d/1ZP6rfMf-iW3j8iOGQC52zIHZcs4Haid1/view?usp=sharing

我通过在Windows任务管理器中删除模拟器qemu-system-x86_64来解决这个问题。即使模拟器可能没有打开,但它仍然在任务管理器中运行。杀死模拟器,然后从AVD管理器运行冷启动,效果非常好。