Reputation: 73
No matter what I do, the sw720 screen sizes look awful. I'm wondering if there is a way to not allow users with this screen size to download the app.
Thanks,
Upvotes: 0
Views: 55
Reputation: 207
You can use <compatible-screens>
tag in your manifest by this way, you can decide the screen size and screenDensity that your app compatible with.
This is the example:
https://stuff.mit.edu/afs/sipb/project/android/docs/guide/topics/manifest/compatible-screens-element.html
and that all the filter you can use in your manifest:
https://developer.android.com/google/play/filters.html
Upvotes: 1