How do I publish apps for tablets in the Play Store?

1

I can not make my application available for 7 and 10 inch tablets , when I send the APK in the Developer Console, it displays the following error:

Design your tablet app
Your APK does not appear to be designed for tablets

I researched how to solve on the internet but I did not find an answer to my question. This link was the closest I found to my problem.

Criteria used by Google Play to determine if an app is designed for tablets

As the image shows, I made the layout for all sizes and icons as well:

    
asked by anonymous 03.10.2016 / 22:11

2 answers

1

If you use a specific permission only for smartphones, such as connection:

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>

To work on tablets too, you should change this to:

<uses-feature android:name="android.hardware.telephony" android:required="false" />

This is just an example, there are several permissions that if you use in your project, it will make it unique to smartphones.

    
03.10.2016 / 22:22
1

Only one addition: Creating Layouts for the smallest width as 600dp would be encouraged since you plan to publish to tablets. (layout-sw600dp) xxhdpi sometimes get uncomfortable on 10 "tablets

    
12.10.2016 / 20:17