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">
...
Chris source
share