My application uses Google Maps v2. This application runs successfully on an Android device. I tried to run the same application on an Android emulator. The purpose of my emulator Google APIs API Level 18, but the problem here is that the application runs on the emulator, but the map does not draw a fragment of the map, see Image below

In logcat, I see the following error
Google Maps Android API v2 only supports devices with OpenGL ES 2.0 and above
and the following warning
eglSurfaceAttrib not implemented
I added this feature in the manifest
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
Does anyone have an idea how to run this simple application on an emulator?
Thanks in advance.
source
share