Windows - getGLES2ExtensionString:找不到GLES 2.x配置;退出代码-1073741819(0xC0000005)

问题描述 投票:0回答:1

我有新的Android Emulator 27.0.2的问题。仿真器无法启动。首次启动emu在模拟器sdk重新安装后成功,但每次启动都不成功。


虚拟设备的冷启动没有帮助,仿真性能:图形:软件 - 在虚拟设备配置中更改GLES 2.0选项没有帮助。英特尔HD 4400的视频驱动程序是最新的,重新安装没有帮助。

  • 9:02 Emulator: getGLES2ExtensionString: Could not find GLES 2.x config!
  • 9:02 Emulator: Failed to obtain GLES 2.x extensions string!
  • 9:02 Emulator: emulator: ERROR: Could not initialize OpenglES emulation, use '-gpu off' to disable it.
  • 9:02 Emulator: Process finished with exit code -1073741819 (0xC0000005)
android android-studio android-emulator
1个回答
1
投票

我的解决方案是为当前版本更改buildToolsVersion。在我的情况下:

android {
    buildToolsVersion '27.0.2'
}

在应用程序级别build.gradle

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