我剛剛在Android市場發佈了一款應用程序。當我試圖從三星Galaxy S II和一些micromax設備的市場上下載我的應用程序時,我無法找到應用程序。當我嘗試從網絡市場安裝時,它會顯示「此項目與您的設備不兼容」。我的應用程序不需要任何使用權限。請幫助我。Android電子市場顯示「此產品與您的設備不兼容」
下面是manifest.xml中
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample"
android:installLocation="auto"
android:versionCode="1"
android:versionName="2.0" >
<application
android:debuggable="false"
android:icon="@drawable/rti_logo"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name=".Activity1"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Activity2"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
</application>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="4" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" >
</supports-screens>
</manifest>
刪除了android:targetSdkVersion =「4」http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#target – 2012-03-26 09:32:31
@Padma Kum可能你可以添加它作爲答案 – Richie 2012-03-26 09:36:37
@Richie乾草謝謝Richie Rich :-) – 2012-03-26 10:05:57