I developed an application. And now i want that my application should run only on mobiles not on tablets. I searched for that and tried as:
<supports-screens
android:smallScreens="true"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="false"
android:resizeable="false" />
I write this in androidmenifest.xml file. But it is of no use. My application is running on tablet now also.
Am i declared is wrong, or i should include anything else.
Please suggest what should i do to restrict my application from running on tablet.