I’ve been trying to publish an app on the android market and I keep getting this error “Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml” I looked at all the other posts and followed the instructions adding the android:minSdkVersion and android:targetSdkVersion and it is still giving me the same error when I try to upload the new .apk file. Here is my manifest.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.seeshi.coffee"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:theme="@style/CoffeeStyle"
android:label="@string/app_name" android:debuggable="false">
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="4" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<activity android:name=".Start"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Browse" />
<activity android:name=".CoffeeTypes" />
</application>
Try moving the uses-sdk tag outside of the the application tags.