本文介绍了应用程序的谷歌电子市场的Galaxy S4上不可用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序不适用于三星Galaxy S4

my app not available on Samsung Galaxy S4

ANDROIDMENIFEST文件

ANDROIDMENIFEST FILE

<!-- PERMISSIONS -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<!-- Optional permission to serve location-based ads -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<!-- Optional permission to enable the user to make calls from ads -->
<uses-permission android:name="android.permission.CALL_PHONE" />

<compatible-screens>

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

按我knowldege兼容屏标签是主要的原因。

As per my knowldege compatible-screens tag is the main cause.

我是正确的或者什么可以是resson。

am i right or what can be the resson.

在此先感谢

推荐答案

我想你需要支持 xxhdpi 设备,因为S4具有441dpi。我相信 xxhdpi 桶开始于440dpi。

I think you need to support xxhdpi devices since the S4 has a 441dpi. I believe the xxhdpi bucket starts at 440dpi.

这篇关于应用程序的谷歌电子市场的Galaxy S4上不可用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:28