Skip to content Skip to sidebar Skip to footer

Phones Are Picking Tablet Build From Android Play Store

I am using two .apk files, one for tablets and one for phones. I am handling them using the Multiple APK Handling document from Google. In my phone manifest:

Solution 1:

Before trying this. Please READ it fully.

Make Your Layout like this:

res/layout/main_activity.xml           # For handsets (smaller than 600dp available width)
res/layout-sw600dp/main_activity.xml   # For 7” tablets (600dp wide and bigger)
res/layout-sw720dp/main_activity.xml   # For 10” tablets (720dp wide and bigger)

For TAB:

For example, if your application is only for tablet-style devices with a 600dp smallest available width:

<manifest... ><supports-screensandroid:requiresSmallestWidthDp="600" />
...
</manifest>

For Tablet . Hope this will help you.

Post a Comment for "Phones Are Picking Tablet Build From Android Play Store"