I want to stop the my android application running on Tablets. I have given like below in AndroidManifest.xml
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:xlargeScreens="false"
android:resizeable="false"
android:largeScreens="false"/>
Still app is installing and running on Tablets. How to prevent this?
add <compatible-screens> in your AndroidManifest.xml…
see this links…
http://developer.android.com/guide/google/play/filters.html#advanced-filters
http://developer.android.com/guide/topics/manifest/compatible-screens-element.html