My application does not appear on the Google Play Store for Samsung Galaxy Note 4

I published the application on the Google Play Store. This application is for phones, and I made it not visible to tablets by editing the compatible screens element in the manifest file.

The problem is that some phones with a larger screen size (more than 5 inches) also cannot "see" my application in the google play store. For example, I can’t find my application from the Samsung Galaxy 4 (5.7 inches, 1440 x 2560 pixels, ~ 515 dpi) in the playback store.

How do I set up an element of compatible screens so that I can precisely separate phones and tablets?

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

When I first published my application, I had the same problem with nexus 6. But I fixed it by adding the following lines:

    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />

nexus 6 . , Samsung 4?

+4
1

Samsung Galaxy 4,

 <compatible-screens>
    <screen
        android:screenDensity="640"
        android:screenSize="normal" />
</compatible-screens>

, xxxhdpi, .

+6

All Articles