简体   繁体   中英

Android Screen support for Samsung S4 & HTC ONE

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

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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM