How to separate android device as per the screen size. I have a apk which should run from Android version 3, but I want to run that application only on tablet not for normal devices. I am not sure how to do this stuff. I think
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true" />
This code will help to do my need. But is there any other way to restrict the device when install from google play.