我是Android Studio的新手,这是我第一次尝试运行应用程序。我的计算机相对较慢,不能运行HAXM,所以我使用ARM而不是x86构建的模拟器。当我尝试运行它时,我得到了这个错误:
21:31 Gradle build finished in 15s 887ms
21:31 Emulator: WARNING: init: Missing WGL extension WGL_ARB_create_context
21:31 Emulator: Warning: Quick Boot / Snapshots not supported on this machine. A CPU with EPT + UG features is currently needed. We will address this in a future release.
21:31 Emulator: emulator: WARNING: UpdateCheck: Failure: Error
21:32 Emulator: Process finished with exit code -1073741819 (0xC0000005)我试着遵循这个网站上的多个问题的说明,但到目前为止还没有什么对我有效。有没有办法运行模拟器,或者它只是与我的计算机不兼容?谢谢。
发布于 2020-07-29 09:25:23
这些问题与您试图模拟的特定设备和您拥有的处理器(英特尔酷睿2或更早的处理器)有关。
要解决它,请执行以下操作:
创建新的仿真器选择要仿真的设备。在标题为"System Image“的下一页上,选择选项卡"other images”Download,然后选择一个在ABI列下列为armeabi-v7a的映像。该映像应该可以在您的处理器上成功运行。
https://stackoverflow.com/questions/49959571
复制相似问题