Android应用程序兼容性问题

Android应用程序兼容性问题,android,hardware,compatibility,Android,Hardware,Compatibility,几天前,我在安卓商店上传了一个应用程序,显示galaxy s4和Nexus 7不支持它(我刚刚用这些设备测试过,可能还有更多) 这是应用程序的URL 我四处查看了平板电脑的权限,发现了 下面是我现在使用的权限 清单xmlns:android=”http://schemas.android.com/apk/res/android" package=“com.lingapps.appwriter” android:installLocation=“自动” android:versionCode=“

几天前,我在安卓商店上传了一个应用程序,显示galaxy s4和Nexus 7不支持它(我刚刚用这些设备测试过,可能还有更多)

这是应用程序的URL

我四处查看了平板电脑的权限,发现了

下面是我现在使用的权限

清单xmlns:android=”http://schemas.android.com/apk/res/android" package=“com.lingapps.appwriter” android:installLocation=“自动” android:versionCode=“3” android:versionName=“1.0”>



但是为什么它不能与Galaxy s4兼容,任何帮助都将非常感激

星系s4具有xxhdpi分辨率。您可以查看电话规格:)。您还需要添加xxhdpi。谷歌对此表示支持

此链接将帮助您了解更多信息:


您需要将android:targetSdkVersion=“14”更改为android:targetSdkVersion=“17”这对我有帮助:

1) 删除

2) 目标SDK级别19(如果尚未安装,请使用SDK管理器安装)

3) 将以下行添加到
块:

<screen android:screenSize="normal" android:screenDensity="480" />

否则,只需从代码中删除android:targetSdkVersion=“14”即可
<screen android:screenSize="normal" android:screenDensity="480" />