为什么我的APP不支持Samsung Galaxy Note 3

问题描述 投票:1回答:2

我在Google Play上发布了一个应用程序,该应用程序适用于所有移动设备以及Tab 7和Tab 10,但对于Samsung Not 3则不可见。

这里是清单文件:

<supports-screens android:resizeable="true"
                  android:smallScreens="true" 
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:xlargeScreens="true"
                  android:anyDensity="true"/>
<compatible-screens>
    <!-- all small size 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" />
    <!-- all normal size screens -->
    <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" />
    <!-- all large size screens -->
    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />

</compatible-screens>

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" /> 

如果添加此行,您认为它行得通吗?

<screen android:screenSize="large" android:screenDensity="480"/>    
android google-play apk samsung-mobile
2个回答
0
投票

您应该在screenDensity中包含android:screenDensity =“ xxhdpi”,因为我确定Samsung Note 3具有该屏幕密度


0
投票

我有三星银河注3手机。我有一个问题。我已经下载了NEC REMIT APP。 IT IS安装完成。但不起作用。我已经卸载并重新安装它。但仍然是同样的问题。我该怎么做才能解决此问题。

© www.soinside.com 2019 - 2024. All rights reserved.