The old Galaxy Tab 7" is said to be a large mdpi device but it uses
hdpi drawables. I did an experiment to create an app with the
following restrictions in the manifest.

    <uses-sdk android:minSdkVersion="1" />
    <uses-feature android:name="android.hardware.touchscreen"
android:required="false" />

    <compatible-screens >
        <screen android:screenSize="large"
android:screenDensity="mdpi" />
        <screen android:screenSize="large"
android:screenDensity="hdpi" />
    </compatible-screens>

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

The Device Availability dialog in the Developer Console tells me that
this app will not be available in Android Market for any Samsung
device. In particular, all variations of Galaxy Tab are listed as
unsupported. Why?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to