谷歌播放,应用程序与三星平板电脑不兼容



在GooglePlay上发布我们的应用程序并将其安装在多个设备上后,一切似乎都可以正常工作,但是某些平板电脑在商店中显示为"不兼容"。

平板电脑是Galaxy Tab 2(10.1)

这是我们的软件包$ aapt转储徽章的一些结果:

sdkVersion:'7'
targetSdkVersion:'17'
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--'
densities: '120' '160' '240' '320'

我们的平板电脑有4.0.4,在检查安装了该版本的下载统计设备后,还通过电子邮件发送了软件包进行安装,并且在该设备上运行正常,没有任何问题。

任何提示将不胜感激,谢谢

试试这 3 件事:

1 - 禁用"触摸屏"。

<uses-feature android:name="android.hardware.touchscreen"  android:required="false" />

这将禁用ADVANCE触摸屏控制(如轻拂等)

2 - 禁用Play商店发布页面中的复制保护(如果使用)。

3 - 同样在您的清单文件中,您可以尝试如下操作:

<compatible-screens>
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
</compatible-screens>

最新更新