我前段时间发布了关于平板电脑兼容性问题的帖子,并被告知添加Galaxy Tab插件作为我的构建目标。这使得应用程序在模拟器上工作得很好,我已经有一个Xoom下载了应用程序,但我现在有人试图下载应用程序,但无法...
当他试图下载时,市场阻止了他,并说这个应用程序不兼容。他说,他已经下载了其他应用程序,没有任何问题,但这个应用程序不起作用。他注意到的唯一区别是:“你知道,点击购买应用后会弹出一个屏幕,列出应用使用的所有功能。我看到的大多数应用都会使用更多的功能。比如内存和列表中的其他项目。越野计分器应用显示没有使用特定的功能。我想知道这是不是问题所在。”
有人知道这个问题在哪一端吗?我真的很想把这个应用程序发布给他,但我一直在尝试的修复都没有向他开放它……
正在使用的Xoom的规格:摩托罗拉xoom平板电脑,带有蜂窝3.1内核2.6.36.3
用户报告说,当他试图从基于web的市场下载该应用程序时,他收到一条消息,说它与他的Xoom不兼容。
他只能通过电子邮件发送给自己的链接在基于设备的市场上查看应用程序,但他仍然收到不兼容的消息……
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bjpcomet.XCScore"
android:versionCode="2"
android:versionName="1.1">
<uses-sdk android:minSdkVersion="1"
android:targetSdkVersion="8"/>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:debuggable="false">
<activity android:name="com.bjpcomet.XCScore.ScoringApp"
android:label="@string/main_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.bjpcomet.XCScore.Setup"
android:label="@string/setup_title">
</activity>
<activity android:name="com.bjpcomet.XCScore.RunMeet"
android:label="@string/main_title">
</activity>
<activity android:name="com.bjpcomet.XCScore.SetupMenu"
android:label="@string/setup_title">
</activity>
<activity android:name="com.bjpcomet.XCScore.ColorSettings"
android:label="@string/setup_title">
</activity>
<activity android:name="com.bjpcomet.XCScore.ColorPicker"
android:label="@string/setup_title">
</activity>
</application>
</manifest>发布于 2011-06-24 08:39:53
找到问题了--问题出在版权保护设置中。我启用了它,显然,它在市场上对某些设备的应用程序可见性造成了一些问题。要修复此问题,您只需禁用复制保护
谷歌建议使用他们较新的许可服务。http://developer.android.com/guide/publishing/licensing.html
https://stackoverflow.com/questions/6427516
复制相似问题