在更新到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 SDK并且环境变量“ANDROID_HOME”指向错误的位置时,就会发生此问题。

要修复它,请进入Android Studio设置,找到合适的Android SDK位置,更新环境变量并重新启动Android Studio /您的PC。

这个错误非常普遍,这种症状可能是由于一百万个完全不同的问题中的任何一个造成的。 你要做的是找到更多关于正在发生的事情的信息,这样你就不会看起来像一只瞎鸡在啄食令人作呕的石头。 因此,让我们得到调试步骤:

first thing is to find the logs of Android studio. In doubt, stackoverflow already has a section to help you How to find the logs on android studio?. The text file should be named: "idea.log". You can open it with notepad, but only open it after android studio is closed (in windows 10). There will be a lot of events inside. Search by "manager.EmulatorProcessHandler" and the last date that you had the error. A good trick to facilitate your life, after having found the log file, is to close Android studio: delete the log file; reopen android studio and retry to open the emulator. The log file will be recreated with a lot less history and so it will be so much easier to search. In my case, i found: manager.EmulatorProcessHandler - Emulator: emulator: ERROR: Another emulator instance is running. Please close it or run all emulators with -read-only flag.. Given that, it is easy to solve. I just had to open a process manager and terminate the emu process that didn't correctly close for some unknown reason. Of course, in our case the log will be completely different. But now you have a clue of the hidden criminal.

我也遇到了同样的问题。尝试了不同的解决方案

将“图形”改为“软件” 更新android studio sdk到最新版本 使缓存无效/重新启动android studio

但问题是我的磁盘已满,模拟器无法保存必要的文件。所以如果有人遇到这个问题,请确保你有至少10GB的可用空间(对于安装在像素4 2021的android 11)

我尝试了张贴在这里的一切,但没有工作。我通过更新我的MacOS解决了这个问题。

我用的是10.14 Mojace,我把它更新到了最新版本11.2.1 Big Sur。

当我试图从命令行启动模拟器时,我收到了以下错误。经过一番研究,我发现在Catalina之后,苹果改变了一些系统库的位置。我不确定这是由它引起的,但升级MacOS为我解决了这个问题。

我通过更新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