Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android build get error message "Emulator: OpenGL backend 'angle' without OpenGL ES 1.x library detected. Using GLESv2 only."

After running my Android project in Android Studio version 3 beta 7 I get the following error in Event log:

Emulator: OpenGL backend 'angle' without OpenGL ES 1.x library detected. Using GLESv2 only.

Is there any way to fix this?

like image 869
Ehsan Zargar Ershadi Avatar asked Oct 25 '17 15:10

Ehsan Zargar Ershadi


1 Answers

You can look here for more information. In brief, the problem is that emulator you use does not have library to support OpenGL ES 1. It has probably only library for OpenGL ES v.2.

Try to update Android Studio and emulator components to latest version and try to use x86 emulator version (if your developer machine is an x86 pc).

like image 160
xcesco Avatar answered Oct 16 '22 12:10

xcesco