minSdkVersion positive 32-bit integer
I am trying to publish an application in the market and i am getting the following error.
Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml.
this is my manifest file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.v3.scribeair.lite" android:versionCode="1"
android:versionName="1.0">
<uses-sdk minSdkVersion="6" />
<uses-permission android:name="android.permission.B开发者_如何学GoLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name=".ScribeAirActivity" android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".DeviceListActivity" android:label="@string/select_device"
android:theme="@android:style/Theme.Dialog" android:configChanges="orientation|keyboardHidden" />
<activity android:name=".AboutActivity" android:label=""
android:theme="@android:style/Theme.NoTitleBar" />
</application>
</manifest>
Instead of this <uses-sdk minSdkVersion="6" />
use this one
<uses-sdk android:minSdkVersion="6" />
精彩评论