Android Question Why does my Manifest Txt prevent me from uploading an App to Slideme?

JoseJose

Member
Licensed User
When uploading an up with the following (which Google Play accepted):
-----------------------------------
AddManifestText(
<uses-sdk android:minSdkVersion="4" />
android:targetSdkVersion="19"
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
-------------------------
==>Why does Slideme insist that the Manifest MUST have android:minSdkVersion defined ?
=======================

I also tried uncommenting or adding both in the same instruction:
AddManifestText(
<uses-sdk android:minSdkVersion="4"/>
'android:targetSdkVersion="14"
'<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)

==>However Slideme still insists that the Manifest MUST have the android:minSdkVersion defined... ?

-Any help would be very appreciated.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
This is the default code for the manifest editor:
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="19"/>
<supports-screens android:largeScreens="true"
  android:normalScreens="true"
  android:smallScreens="true"
  android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")

Try it with this code.
 
Upvote 0

JoseJose

Member
Licensed User
Thank you Erlr, this did not work either, so I am thinking their system is totally Flawed, since Google accepted the APK more than once, without ever complaining.
 
Upvote 0

JoseJose

Member
Licensed User
Thank you somed3v3loper.
Unfortunately removing the minSDK version and using the targetSDK version paramaeter instead with the same minimum version, did not make it work.
Tried a few other combinations in case my Minimum was too low for 'slideme' but no, still searching...
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…