误判不在 Play 商店 'Designed for tablets' 列表

Falsely judged not 'Designed for tablets' list in the Play Store

最近我将我的新应用程序上传到 Google Play 商店。然后优化提示说:

Design your app for tablets

Your Production APK needs to meet the following criteria:

(X) Your APK should include custom drawables assets for common tablet screen densities.

但实际上我包含了多种屏幕密度的可绘制资源(-mdpi、-tvdpi、-hdpi、-xhdpi、-xxhdpi 和 -xxxhdpi)。

我能想到的唯一原因是这些可绘制对象不在 drawable 文件夹中,而是在 mipmap 文件夹中。

因为我的应用程序除了 ic_launcher 文件夹中的 ic_launcher 图标外不使用任何可绘制对象,它没有drawable-***dpi 个文件夹。

然而,Google 他们自己建议使用 mipmap 容器而不是 drawable 容器。

Managing Launcher Icons as mipmap Resources:

it is still best practice to move your launcher icons to the mipmap/ folders

只有我按照他们的指导。然后我从开发者控制台得到了上面的提示。

这是 Google Play 商店的错误,对吗?或者,有什么解决办法吗?

终于解决了

如果您只有矢量可绘制对象(mipmap 中的 ic_launchers 除外),GooglePlay 控制台可能会自动检测到它 不包含任何常见平板电脑屏幕密度的可绘制资源.

几天前,我发现GooglePlay控制台网站上有Design for Tablet Contact Form。因此,在我声称我的应用程序只有矢量可绘制资源后,一位工作人员回复我说我的应用程序实际上已经为平板电脑做好了准备。现在,一切都好了。