Google 播放 android 图标大小违规

Google play android icon size violation

由于以下问题google Play 商店禁用了我的应用程序

application has been removed from Google Play because it violates the device and network abuse policy. The large dimensions of your app's launcher icon negatively impacts the performance of some user devices.

但是我在可绘制文件夹中为不同的分辨率提供了不同的图标。我需要为这个问题找到更好的解决方案。谢谢

虽然这似乎不太可能 - 我的意思是 - 图标尺寸太大不太可能。

您可以使用 Android studio 生成您的启动器图标。如果您使用 API 19 或更高版本的 Android studio 应该生成 webP 图像。

如果这不能充分减小尺寸,您需要使用一些图像编辑器来压缩或减小图标尺寸。可能的解决方案 - 如果您正在使用 windows 如果您不使用透明度,则可以选择绘画,还有大量的内联图像编辑工具可用。

我得到了解决方案。在 drawable-xxhdpi 和 drawable-xxxhdpi 中有一些超过 2048x2048 的标志图标。

Make changes to your app icon to bring your app into compliance. Your app’s launcher icon size must not exceed 2048x2048.

这也拿出来点评反馈。

因此,我为其他有问题的可绘制文件夹复制了不超过 2048x2048 徽标的 drawable-xhdpi。

您只需要使用 Android Studio 本身提供的 android Image Asset Studio 制作自适应图标。所以xxxhdpi启动器的图标大小不能大于512*512。

Follow the link to generate adaptive icons.