Reputation: 131
I'm using android studio 3.0.1, when I start my emulator I get many error messages, I've tried to solve each problem separately, I also searched a lot but nothing works for me.
12:24 م Emulator: init: Could not find wglGetExtensionsStringARB!
12:24 م Emulator: OpenGL backend 'angle' without OpenGL ES 1.x library
detected. Using GLESv2 only.
12:24 م Emulator: Failed to eglInitialize
12:24 م Emulator: Could not initialize emulated framebuffer
12:24 م Emulator: Warning: requested RAM 1024M too high for your system.
Reducing to maximum supported size 512M
12:25 م Emulator: emulator: ERROR: Could not initialize OpenglES emulation,
use '-gpu off' to disable it.
12:25 م Emulator: Process finished with exit code -1073741819 (0xC0000005)
I also tried this
Upvotes: 13
Views: 25414
Reputation: 1090
Anyone still having issues after trying these things, note that there is a ongoing issue with the Android plugin for IntelliJ IDEA (but Android Studio works).
https://youtrack.jetbrains.com/issue/IDEA-231313
Workaround is to run the .bat
file from the IntellJ installation path.
Upvotes: 0
Reputation: 173
I faced the same problem. In my case, running Android Studio as an administrator solved the problem.
Upvotes: 0
Reputation: 241
I modified the avd config file and solved a similar problem.
C:\Users\USER_NAME\ .android\avd\YOUR_VIRTUAL_DEVICE_NAME.avd
)config.ini
hw.gpu.mode
and set it to off
(hw.gpu.mode=off
)Upvotes: 12
Reputation: 5814
Make sure your graphics driver is updated
Upvotes: 13
Reputation: 3100
check in your emulator setting Use Host GPU
enabled shown in below image
this will you get Android Studio -> Tools -> Android -> AVD Manager
here
Upvotes: 0