Android Screen support for Samsung S4 & HTC ONE

会有一股神秘感。 提交于 2019-12-08 02:29:26

问题


I've been browing the site for an answer, I followed this: Android manifest config for smartphone only, Sony Xperia Z, HTC One and Samsung Galaxy S4 missing on google play

And yet, google Play does not show Samsung S4 & HTC One as supported by my app

in my manifest:

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

<compatible-screens>
    <screen android:screenDensity="mdpi" android:screenSize="normal"/>
    <screen android:screenDensity="hdpi" android:screenSize="normal"/>
    <screen android:screenDensity="xhdpi" android:screenSize="normal"/>
    <screen android:screenDensity="mdpi" android:screenSize="large"/>
    <screen android:screenDensity="hdpi" android:screenSize="large"/>
    <screen android:screenDensity="xhdpi" android:screenSize="large"/>
    <screen android:screenDensity="mdpi" android:screenSize="xlarge"/>
    <screen android:screenDensity="hdpi" android:screenSize="xlarge"/>
    <screen android:screenDensity="xhdpi" android:screenSize="xlarge"/>
    <screen android:screenSize="normal" android:screenDensity="213"/>
    <screen android:screenSize="large" android:screenDensity="213"/>
    <screen android:screenSize="xlarge" android:screenDensity="213"/>
    <screen android:screenDensity="480" android:screenSize="normal" />
    <screen android:screenDensity="480" android:screenSize="large" />
    <screen android:screenDensity="480" android:screenSize="xlarge" />

</compatible-screens>

    <supports-screens android:resizeable="true"
              android:smallScreens="false"
              android:normalScreens="true"
              android:largeScreens="true"
              android:xlargeScreens="true"
              android:anyDensity="true"

              />

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

Any clue as to what is going on? any help is appreciated


回答1:


You should not use compatible-screens. Look in following link might help http://developer.sonymobile.com/2013/03/07/make-sure-your-app-does-not-exclude-xxhdpi-screens/



来源:https://stackoverflow.com/questions/17885548/android-screen-support-for-samsung-s4-htc-one

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!