You can add supports-screensto the manifest and pass true false for each size. In the example below, all mobile phones will be excluded.
Id imagine that the decision to narrow everything down to what you need will look like this.
<manifest ... >
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
<application ... >
...
</application>
</manifest>
Other things are also available, such as density values.
See Support-Screen Dev Doc
sealz source
share