Google play is not displaying my app for tablets?

Deadly 提交于 2019-12-30 13:01:27

问题


I would like to display my app for tablets as well,what are the necessary steps needed to be followed so that my app do get listed for tablet as well.Already my app is been listed for mobile phones.Am I missing something here,please do provide your help.Thanks.


回答1:


Write Below Code into your Androidmanifest.xml file

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



回答2:


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.



来源:https://stackoverflow.com/questions/10891486/google-play-is-not-displaying-my-app-for-tablets

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