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

Asked

Viewed 286 times

1

I can’t make my app available to 7 and 10 inch tablets, when I send the APK to the Developer Console, it shows the following error:


Design your app for tablets
Your APK does not seem to have been designed for tablets


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

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

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

inserir a descrição da imagem aqui

  • Put the Androidmanifest.xml.

2 answers

1


Give a check, if you use any specific permission only for smartphones, such as the link:

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

For it to work on tablets too, you must change this permission, to:

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

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

1

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.