Android电子市场显示“此商品与您的设备不兼容”

时间:2012-03-26 09:28:43

标签: android google-play

我刚刚在Android市场上发布了一个应用程序。当我试图从三星galaxy S II和一些micromax设备的市场上下载我的应用程序时,我找不到应用程序。当我试图从网络市场安装它说“这个项目与您的设备不兼容”。我的应用程序不需要任何使用权限。请帮帮我。

这是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>

5 个答案:

答案 0 :(得分:1)

删除android:targetDdk version="4"或使用与您的设备兼容的版本更改

答案 1 :(得分:0)

当您上传apk时,我很惊讶市场没有给您错误消息。

您的包名“com.sample”是如此通用,它必然是由其他人采取的。

答案 2 :(得分:0)

可能问题是屏幕尺寸。

请参阅以下两个解释如何支持所有屏幕尺寸的网站:

Market-Filters

Supports Screens Element

答案 3 :(得分:0)

尝试将此添加到您的清单文件

<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"/>

答案 4 :(得分:-1)

移动你的&lt; uses-sdk&gt;阻止上面&lt; application&gt;。删除&lt; supports-screens&gt;完全,除非您的应用程序确实支持屏幕大小。