AndEngine icon indicating copy to clipboard operation
AndEngine copied to clipboard

No EGLConfig found!

Open medirasoft opened this issue 13 years ago • 3 comments
trafficstars

i coded my game with GLES2, and having this report on google play.

java.lang.IllegalArgumentException: No EGLConfig found! at org.andengine.opengl.view.ConfigChooser.chooseConfig(ConfigChooser.java:183) at org.andengine.opengl.view.ConfigChooser.chooseConfig(ConfigChooser.java:157) at org.andengine.extension.opengl.EGLHelper.start(EGLHelper.java:78) at org.andengine.extension.opengl.GLThread.guardedRun(GLThread.java:151) at org.andengine.extension.opengl.GLThread.run(GLThread.java:95)

medirasoft avatar Jun 07 '12 07:06 medirasoft

Either you requested some bizzare rendering options (I do not think so) or you just forgot to add this to your manifest: <uses-feature android:glEsVersion="0x00020000" android:required="true"/>

Without this entry it is possible to install AE-based apks on a device that does not support GLES2, which probably is what you are facing. It is not AE error. (well... it might be AE error, but there are other, more probable explenations).

nazgee avatar Jun 08 '12 07:06 nazgee

I have the same problem and I tried the code given by nazgee but still it gives the same error. Is there other cause of this error? If yes, what is it and how can I resolve it?

PangWasHere avatar Aug 31 '12 15:08 PangWasHere

http://perle-development.com/tutorials/running-andengine-in-the-emulator/

ScriptiZer avatar Sep 14 '12 09:09 ScriptiZer