How to disable support of applications for Mobile phones and enable it for Tablet only. I want to follow multiple apk files support. I also want to know that what should be the resource folder names for Tablet. Now, I've drawable-large for storing images and layout-sw600dp and layout-sw720dp for tablet.
Are these config. correct?
Any help will be greatly appreciated.
please try this code:
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="14" />
for more read this.