2

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

Machavity
  • 30,841
  • 27
  • 92
  • 100
David Homes
  • 2,725
  • 8
  • 33
  • 53
  • Refer to both of these links. http://stackoverflow.com/questions/19380811/android-manifest-that-will-support-galaxy-s4-htc-one http://stackoverflow.com/questions/17673640/android-my-app-is-not-supporting-galxy-s-4 – Honey H May 30 '14 at 04:05

1 Answers1

0

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/

JustDoingIt
  • 146
  • 4