Google play is not displaying my app for tablets?

拜拜、爱过 提交于 2019-12-01 12:00:25

Write Below Code into your Androidmanifest.xml file

<supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true" />

see the step given Address compatibility issues and What all changes made in Manifest.xml Review and update your manifest settings http://developer.android.com/guide/publishing/preparing.html

How to support Multi screen? http://developer.android.com/guide/practices/screens_support.html

This steps will indirect leads to show your app for Tablets too.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!