Android Question google market download permission using google map api

hookshy

Well-Known Member
Licensed User
Longtime User
Adding google map services into the project will allow users with sdk version lower than 10 ,android version lower than 3 to download the app ?
Or it has to do with target devices sdk from manifest editor?

The map function is added to one of may project activity and would be easy to see if sdk version of device is lower than 10 then do not go to map activity.

Thanks.


this manifest statement is added to the project like in Erel's tutorial
http://www.b4x.com/android/forum/threads/google-maps-android-v2-tutorial.24415/#content
B4X:
AddManifestText( <permission
          android:name="$PACKAGE$.permission.MAPS_RECEIVE"
          androidprotectionLevel="signature"/>
      <uses-feature android:glEsVersion="0x00020000" android:required="true"/>)
 
AddApplicationText(<meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="AIzaSyxx"/>)
 
Top