Google 开发者控制台错误地认为我的应用不是为平板电脑设计的

Google Developer Console incorrectly believes my app is not designed for tablets

这是我在开发人员控制台中收到的消息:

Your Production APK needs to meet the following criteria:

Your APK should include customised drawable assets for common tablet screen densities.

-在我的清单中我有:

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

-在 /src/main/res 我有 mipmap-hdpixxxhdpi 文件夹每个都包含一个启动器图标。

-我已经按照店家的要求上传了合适的平板截图。

以上所有似乎都可以正常工作。那么,我错过了什么?

根据我通过搜索收集到的信息,可能是缺少可绘制内容导致我的 APK 错误地失败,但除了启动器图标外,我不需要任何其他内容。请问有人能告诉我如何模拟这个吗?我什至找不到文件夹结构的明确描述。

谢谢!

我以前遇到过这个问题,看这里 https://developer.android.com/guide/practices/tablets-and-handsets.html 您需要为更大的屏幕添加新布局以及不同的可绘制对象,例如:

      res/layout-large/main.xml for tablets: 

而不是仅仅使用

      res/layout/main.xml for handsets:

最终我放弃并填写了此表格以声明该应用程序适合平板电脑,如果您确定所有正确的框都已打勾,则进行人工审核。该应用程序在一天内获得批准,几天后 Google Play 商店中的 "Designed for phones" 标签消失了。没有给出关于该问题的解释。

https://support.google.com/googleplay/android-developer/contact/tabletq