I have added the following lines to the manifest.xml
and still i could install the .apk in the 10" devices . I want the .apk file to be installed only in the 7" tablet .
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="false"
android:requiresSmallestWidthDp="600"
android:largestWidthLimitDp="700"/>
<compatible-screens>
<!--no small size screens -->
<!--no normal size screens -->
<!-- all large size screens -->
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />
<!-- no xlarge size screens -->
</compatible-screens>
I don't know where i am going wrong . Thanks in advance .