在更新到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堆和分辨率设置。


当前回答

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.

其他回答

我知道很多人已经给出了这个问题的答案,许多人也有正确的观点。 我已经尝试了以上所有可能的方法,但它不起作用,在阅读了android工作室的日志后,我知道这是一个存储问题,因为模拟器保持11 GB的空闲空间,它将工作。

我重新安装了Intel x86 Emulator Accelerator (HAXM安装程序)

在此之前,我尝试了很多方法,但只有一种有效:

配置->设置->外观和行为\系统设置\Android SDK -> SDK工具(选项卡)->取消选择“Intel x86 Emulator Accelerator (HAXM installer)”-> OK

现在,当你试图运行你的应用程序,或从AVD管理器启动设备时,它会给出“安装模拟器”错误->单击确定。这将自动下载新的“Intel x86 Emulator Accelerator (HAXM installer)”,我选择了512 RAM,它可以工作。

之后,我再次进行了所有这些处理,并选择了2 GB的RAM,它仍然工作。

我也有这样的问题。

fix:

1. 为Android VDM选择一个旧版本(系统镜像)-首先,我使用了28版本(在我的情况下是OREO),然后我切换到旧版本,到25(NOUGAT)。 2. 将“图形”更改为“软件”。

你可以通过从命令行运行模拟器来获得错误消息的详细信息,例如:

C:\WINDOWS\system32>C:\Users\foo\AppData\Local\Android\Sdk\emulator\emulator -netdelay none -netspeed full -writable-system -avd emulator_foo
emulator: Android emulator version 30.6.5.0 (build_id 7324830) (CL:N/A)
emulator: ERROR: This AVD's configuration is missing a kernel file! Please ensure the file "kernel-ranchu" is in the same location as your system image.
emulator: ERROR: ANDROID_SDK_ROOT is undefined

或者通过Android Studio IDE菜单帮助->显示登录资源管理器->打开idea.log文件->再次运行avd模拟器,查看最后几行更新的错误日志。

这些答案对我都没用。我只是用相同的设置创建了一个新的虚拟设备,并删除了旧的。新的工作很好。