Say if I decided to support only normal 320X480 screen resolution for the first release of my app,
Will these lines, hide the app from the high and small resolution screens on android market ?
<supports-screens android:smallScreens="false" android:largeScreens="false" android:resizeable="false" android:normalScreens="true" android:anyDensity="false">
If not can some one point in the right direction as to how to make sure that the app is not visible or available for download for rest of the screens ?
Thanks in advance.