How can I exclude the following "ldpi normal" screens from the Play Store?
WQVGA400 (240x400) WQVGA432 (240x432)
My app requires a minimum width of 320. This is in my manifest:
<supports-screens
android:anyDensity="true"
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true" />
For Android 3.2+ there is an option android:requiresSmallestWidthDp, but I support 2.1 upwards, so this is not an option.
How can I do this?
Thanks, Andrej