MinSdkVersion error while loading APK in Android Market

When I try to download the APK on the Android Market, I get this message:

The market requires minSdkVersion to be given a positive 32-bit integer in AndroidManifest.xml.

But I defined android:minSdkVersionin my manifest ...

  <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.mkainc.tabwidget"
          android:versionCode="7"
          android:minSdkVersion="7"
          android:versionName="2.1">

...
+5
source share
1 answer

Information about the SDK should be contained in the uses-sdk tag:

<uses-sdk android:minSdkVersion="integer" 
          android:targetSdkVersion="integer"
          android:maxSdkVersion="integer" />

See the documentation for more details .

+2
source

All Articles