I have created Android application which is targeted to tablet devices only. In AndroidManifest I have set following screen support:
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:requiresSmallestWidthDp="600"
android:smallScreens="false"
android:xlargeScreens="true" />
All graphics in my are vectors so the XML files are put inside the drawable
directory directly. Only bitmaps are the launcher icons which looks like this:
res\mipmap-hdpi\ic_launcher.png
res\mipmap-xxhdpi\ic_launcher.png
res\mipmap-xhdpi\ic_launcher.png
res\mipmap-xxxhdpi\ic_launcher.png
res\mipmap-mdpi\ic_launcher.png
In developer console I'm getting a warning that my application is not designed for tablets properly "Use Assets Designed for Tablet Screens".
I have tried adding mipmap-large-mdpi\ic_launcher.png
and mipmap-xlarge-mdpi\ic_launcher.png
but it had no effect on the warning.
What can I do, to have my app properly designed for tablets?