I want to create an Application for 18 inch and above tablets in Android, I would like to know few queries as below:
Suggestions are strongly appreciated, Thanks in advance.
Since you want to make your app for tablets you should choose Phone and Tablet.
You can restrict your app to only be distributed on a tablet. Like this:
<manifest ... >
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
...
<application ... >
...
</application>
But it is recommended that you make your app support multiple screens