Tuvia Khusid
Tuvia Khusid

Reputation: 872

Google Maps Android API v2 only supports devices with OpenGL ES 2.0 and above

I'm trying to run Google Map's sample project on emulator. Now I have an error:

Google Maps Android API v2 only supports devices with OpenGL ES 2.0 and above

How can I resolve that problem?

Upvotes: 9

Views: 10979

Answers (3)

Cassio
Cassio

Reputation: 1557

I had the same issue running with an emulator. I fixed by editing my emulator in AVD Manager, at Emulator Options checking the box for Use Host GPU.

Upvotes: 6

Khushbu Suryavanshi
Khushbu Suryavanshi

Reputation: 91

You need to add feature required for OpenGL ES 2.0. for Maps V2 To work with Google Maps , just add the following code in your project's AndroidManifest.xml file before application tag:

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

May this will help you :)

Upvotes: 1

ostergaard
ostergaard

Reputation: 3507

Google Maps API v2 has a bug. See here: http://code.google.com/p/gmaps-api-issues/issues/detail?id=5440

As linked by Tony in comments above there may be a workaround if you can get hold of and replace the appropriate apk files on the device. Or you can just wait ... ;)

Upvotes: 2

Related Questions