I created an application for Tablet 7 inch and 10 inch. After developed i added below code in manifest to show the application visible only to the tablet in Google Play.
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
After uploaded the application is not listed for 7 inch and is listed for 10 inch tab. When I find that application it says "It is doesn't compactable with your device" in 7 inch tab. What i needed to change to overcome this issue.