Marat
Marat

Reputation: 6703

App doesn't support Samsung Galaxy Tab 7 inch displays

My app turns out to be not compatible with Samsung Galaxy Tab 4 with 7 inches display. However, I have included these lines in my manifest. What I need to change?

<compatible-screens>
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="420" />
    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />
    <screen android:screenSize="normal" android:screenDensity="640" />
    <!-- all large size screens -->
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />
    <screen android:screenSize="large" android:screenDensity="420" />
    <screen android:screenSize="large" android:screenDensity="480" />
    <screen android:screenSize="large" android:screenDensity="560" />
    <screen android:screenSize="large" android:screenDensity="640" />
</compatible-screens>

Upvotes: 0

Views: 70

Answers (2)

shobhik
shobhik

Reputation: 200

Are there any features your app is using that the device does not have?

We ran into this a year ago with AUTOFOCUS for the rear camera, which a lot of 7-8" tablets don't seem to have.

EDIT: Based on Marat Kumar M's answer above, what you want to add, to exclude those two screen types, is the following:

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

Upvotes: 1

Naveen Kumar M
Naveen Kumar M

Reputation: 7557

Add below code in your Manifest file :

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

Upvotes: 2

Related Questions