English 中文(简体)
市场要求将敏SdkVersion设定为一种积极32-bit integer in Aungifest.xml
原标题:Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml

We get this message every time time we try to upload our apk. "Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml." We have search and found many answer but none seem to fit our code. Any help would very accepted. Thank You.

    <?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="1" android:versionName="1.0" package="com.app.MobileClient"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:label="@string/app_name" android:icon="@drawable/icon">
        <activity android:label="@string/app_name" android:name=".MobileClient" 
android:configChanges="keyboardHidden|orientation" android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>
问题回答

直接在标签下添加一个标签,例如:

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




相关问题
How to add manifest permission to an application?

I am trying to access HTTP link using HttpURLConnection in Android to download a file, but I am getting this warning in LogCat: WARN/System.err(223): java.net.SocketException: Permission denied (...

How to force a meta-data value to type string?

I specified a meta-data in my manifest.xml like this: <meta-data android:value="5555555555" android:name="foo"></meta-data> When accessing the metadata like this: ...

Android : launching diff activities under TabWidget

I am trying to launch activities under each tab. I have tried with following code public class Tab_Proj1 extends TabActivity { TabHost mTabHost ; public void onCreate(Bundle savedInstanceState) { ...

Android voice call logging

I d like to have some code be notified of any incoming and outgoing voice calls. I need to grab all the following: If it was an incoming or outgoing call Number dialed, or incoming caller-id phone ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

热门标签