我最近在google play中上传了一个应用程序。我只有一个png图标,我把它放在了m,h,xh,xxh,xxxh dpi文件夹中,其余的应用程序图标都是svg的,我把它们放在anydpi文件夹中。然而,在控制台中,我看到了以下优化提示:
Your Production APK needs to meet the following criteria:
Your APK should include custom drawables assets for common tablet screen densities. 这是我的res文件夹的屏幕截图

我搜索了stackoverflow,发现了一些相关的问题,但没有找到对我有帮助的答案。有人知道我做错了什么吗?
发布于 2017-04-22 20:36:12
您可能需要将以下配置行添加到gradle文件中:
defaultConfig { vectorDrawables.useSupportLibrary = true
https://stackoverflow.com/questions/43559136
复制相似问题