I'm developing an application that uses Google Maps API v2 and map is working well in devices with Android 4.x (same keystore and same API key and I can see the tiles). I'm having a issue with MapFragment and Android 2.2 device (HTC Wildfire). The map is blank.
This is just the error I get in logcat (two times):
E/copybit ( 4801): Error opening frame buffer errno=13 (Permission denied)
E/copybit ( 4801): Error opening frame buffer errno=13 (Permission denied)
I have this feature in my AndroidManifest.xml.
<!-- Feature required by Google Maps API -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
I'm a little lost. I used this API in this phone previously without problem.
Any help will be appreciated.
Thanks in advance.