Android Question Setting android app to 4.0 and above

shashkiranr

Active Member
Licensed User
Longtime User
Hi ,

I need my app to be shown in google play for phones which is 4.0 and above.

In the manifest editor i have the following code.

B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)

Its showing 1.6 and above in google play.

Should i change the
B4X:
android:minSdkVersion="4"
to
B4X:
android:minSdkVersion="14"

Kindly let me know.

Regards,
SK
 
Top