简体   繁体   English

适用于平板电脑的Android App仍显示“专为手机设计”

[英]Android App for Tablets still showing “Designed for Phones”

I published an app ( http://bit.ly/1GfKsNG ) which is meant to be for tablets only. 我发布了一个应用程序( http://bit.ly/1GfKsNG ),仅适用于平板电脑。

The AndroidManifest.xml is adjusted in the way: AndroidManifest.xml的调整方式如下:

<uses-sdk
    android:minSdkVersion="16"
    android:targetSdkVersion="21"/>

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

and in Google Play, I also only added tablets screenshots (7" and 10") and no smartphone screenshots for the app. 在Google Play中,我还添加了平板电脑屏幕截图(7“和10”)以及该应用的智能手机屏幕截图。 Still, the app shows "Designed for Phones" in the Play store. 不过,该应用程序在Play商店中显示“Designed for Phones”。

My res/ folder structure looks like this: 我的res/文件夹结构如下所示:

/drawable-hdpi
/drawable-ldpi
/drawable-mdpi
/drawable-xhdpi
/drawable-xxhdpi
/layout
/menu
/values

I already checked related questions: 我已经检查了相关问题:

So the question is, what's the remaining part that I have overlooked to make the app "Designed for Tablets". 所以问题是,我忽略了制作应用程序“Designed for Tablets”的剩余部分。

What is also strange is that the Google Play store shows no pending optimization tips for tablet optimisation but tells me that tablet optimisation is already finished (by promoting the app from Alpha test status to production). 同样奇怪的是,Google Play商店没有显示平板电脑优化的待定优化提示,但告诉我平板电脑优化已经完成(通过将应用程序从Alpha测试状态升级到生产)。

在此输入图像描述

You can request a manual review according to this article . 您可以根据本文要求进行人工审核。 Specifically, it states: 具体来说,它指出:

If the Optimization Tips page lists "To Do" issues that you feel don't apply to your app or affect its quality on tablets, please notify us using the Designed for Tablets Contact Form . 如果“优化提示”页面列出了您认为不适用于您的应用或影响其在平板电脑上的质量的“待办事项”问题,请使用Designed for Tablets联系表单通知我们。 We will review your app and update your Optimization Tips page as appropriate. 我们将审核您的应用并根据需要更新“优化提示”页面。

I also had the same problem a few months ago, so I used the contact form to request a manual review. 几个月前我也遇到了同样的问题,因此我使用联系表格申请人工审核。 They responded pretty quickly and told me that my app was in fact "designed for tablets". 他们很快回应并告诉我,我的应用程序实际上是“专为平板电脑设计的”。

you can also limit the smallest supported screen size by adding the following line: 您还可以通过添加以下行来限制支持的最小屏幕尺寸:

<supports-screens
    android:xlargeScreens="true"
    android:largeScreens="true"
    android:normalScreens="false"
    android:smallScreens="false"
   android:requiresSmallestWidthDp="600"
 />

不要忘记为Google Play应用说明添加一些平板电脑屏幕。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM