I am using Android Google maps V2 in my application.
If the user doesn't have Internet connection, I send them to an alternative activity without maps.
The problem is that my app is not supported on devices that don't have openGL2, because of manifest:
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
If i put required element to false, the maps don't show.
Is there a way to program this somehow during run-time? Or any other alternatives?