Application listing for 10 inch tablets in playstore but not displayed for 7 inch tablets

后端 未结 3 741
长发绾君心
长发绾君心 2021-01-20 15:35

I have checked the uses-permission,uses-feature and support screens as suggested by other posts. I have uploaded an application in playstore as an update with the following

3条回答
  •  滥情空心
    2021-01-20 15:40

    It is not matter of permission but block which causes this.

        
    

    Yours limit your app to certain screens, so I suggest you review it, especially entries set to false.

    EDIT

    tools:replace tells that you want to use values from your manifest, not from libs'. And yours tells normalScreen=false. And normalScreen is Traditionally this is an HVGA medium density screen, but WQVGA low density and WVGA high density are also considered to be normal. I suspect 7" tablets you see the problem with are not hi-res screen powered, and if so that's why your app is listed as not compatible with. Unless your app is really not working on normalScreen there's no point of setting this to false.

提交回复
热议问题