Using the Uses-Feature , you can limit the distribution of the application only to the tablets and tablets-like devices Landscaping screens. Here is the code you will need in your manifest.xml:
<uses-feature android:name="android.hardware.screen.landscape"
android:required="true"
></uses-feature>
Also use:
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="false"
android:resizeable="false"
android:smallScreens="false"
android:xlargeScreens="true" />
source
share