Android Market的表演及QUOT;此产品不符合您的设备和QUOT兼容; [英] Android Market shows "This item is not compatible with your device"

查看:149
本文介绍了Android Market的表演及QUOT;此产品不符合您的设备和QUOT兼容;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚在Android Market发布的应用程序。当我试图下载三星Galaxy S II以及一些Micromax的设备从我的市场应用,我找不到应用程序。当我试图从网络安装市场它说:这个项目是不是与您的设备兼容。我的应用程序不列入要求任何使用许可权。请帮助我。

下面是manifest.xml文件

 <?XML版本=1.0编码=UTF-8&GT?;
<清单的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
    包=com.sample
    安卓的installLocation =自动
    安卓版code =1
    机器人:=的versionName2.0>    <应用
        机器人:可调试=假
        机器人:图标=@绘制/ rti_logo
        机器人:标签=@字符串/ APP_NAME
        机器人:主题=@安卓风格/ Theme.NoTitleBar>
        <活动
            机器人:名字=活动1
            机器人:标签=@字符串/ APP_NAME
            机器人:screenOrientation =肖像>
            &所述;意图滤光器>
                <作用机器人:名字=android.intent.action.MAIN/>                <类机器人:名字=android.intent.category.LAUNCHER/>
            &所述; /意图滤光器>
        < /活性GT;
        <活动
            机器人:名字=活性2
            机器人:标签=@字符串/ APP_NAME
            机器人:screenOrientation =肖像>
        < /活性GT;
    < /用途>    <用途-SDK
        安卓的minSdkVersion =4
        机器人:targetSdkVersion =4/>    <支持屏
        机器人:anyDensity =真
        机器人:largeScreens =真
        机器人:normalScreens =真
        机器人:调整大小=真
        机器人:smallScreens =真正的>
    < /支持屏>< /清单>


解决方案

要么删除的android:targetDdk版本=4或你的设备是版本更改兼容

I just published an application in android market. When i tried to download my application from market in Samsung galaxy S II and some micromax devices, I couldn't find the application. When i tried to install from web market it says " This item is not compatible with your device". My application doesnot require any uses-permission. Please help me out.

Here is the 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>

解决方案

Either remove the android:targetDdk version="4" or change it with the version your device is compatible with

这篇关于Android Market的表演及QUOT;此产品不符合您的设备和QUOT兼容;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆