I have published an app in google play store. This app is designed for phones and I have made that it will be not visible for tablets by editing compatible-screens element in manifest file.
The problem is that some phones with big screen size (more than 5 inches) also can't "see" my app on google play store. For example, I can't find my app from samsung galaxy note 4 (5.7 inches, 1440 x 2560 pixels, ~515 ppi) in play store.
How I should setup my compatible-screens element that I could accurately 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 firstly published my app I had the same problem with nexus 6. But I fixed it by adding these lines:
<screen android:screenSize="normal" android:screenDensity="480" />
<screen android:screenSize="normal" android:screenDensity="560" />
After that my app became available for nexus 6 and still is not available for tablets. How I could make that it would be visible also for samsung galaxy note 4?
No comments:
Post a Comment