Guided by Multiple APK Support manual I'm trying to publish three different apks for different screen sizes.
I've created following filters:
For small screens:
<supports-screens
android:smallScreens="true"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="false"
android:requiresSmallestWidthDp="320"/>
For normal and large screens:
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
android:requiresSmallestWidthDp="540"/>
For xlarge screens:
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"/>
In rest all three manifests looks the same.
I've uploaded this apks to google play and filters seems to be correct.
The problem: When I install my application to different devices it allways installs version for normal and large screens, I've tested even on Galaxy S4 and HTC One with full hd screens.
I've only one warning in play console: Some devices are eligible to run multiple APKs. In such a scenario, the device will receive the APK with the higher version code.
This is how my play console looks like:
Does anybody has any ideas what is wrong with my configuration? Thanks in advance.