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

Viewed 1139

Recently I uploaded my new app to Google Play Store. Then the optimization tips says:

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.

But indeed I include multiple drawable assets for a variety of screen densities (-mdpi, -tvdpi, -hdpi, -xhdpi, -xxhdpi and -xxxhdpi).

The only reason I can imagine for this is that I have these drawables not in drawable folders but in mipmap ones.

For my app doesn't use any drawables beside of the ic_launcher icons in mipmap folders, It has no drawable-***dpi folders.

However, Google themself recommend to use mipmap holders instead of drawable ones.

Managing Launcher Icons as mipmap Resources:

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

Only I had followed their guide. Then I got the above tip from developer console.

Is this a bug of Google Play Store, isn't it? Or, are there any solution for this?

1 Answers
Related