2012-03-26 117 views
0

我剛剛在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> 
+2

刪除了android:targetSdkVersion =「4」http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#target – 2012-03-26 09:32:31

+1

@Padma Kum可能你可以添加它作爲答案 – Richie 2012-03-26 09:36:37

+0

@Richie乾草謝謝Richie Rich :-) – 2012-03-26 10:05:57

回答

1

要麼刪除android:targetDdk version="4"或與版本的設備是兼容

+0

我認爲星系S II有api> 4 – pleerock 2012-03-26 09:37:42

-1
改變它

移動你的<使用-SDK >塊了上述<應用>。刪除<完全支持屏幕>,除非您的應用程序支持屏幕尺寸而不支持

0

我很驚訝市場沒有給你一個錯誤消息,當你上傳你的apk。

您的軟件包名稱「com.sample」非常通用,它肯定會被其他人使用。

0

嘗試添加到您的清單文件

<supports-screens 
android:largeScreens="true" 
android:normalScreens="true" 
android:smallScreens="true"/> 
相關問題