I want to publish several apks: one for mobile and the other androidtv in one application. According to the publication of several APKs with different filters in one application, there are only four distinctive filters:
Currently, Google Play allows you to publish multiple APKs for one application, only if each APK provides different filters based on the following configurations:
OpenGL Texture Compression Formats
Screen size (and, if necessary, screen density)
API level
Processor Architecture (ABI)
All other filters still work the same as usual, but these four are only filters that can distinguish one APK from another in the same list of apps on Google Play. For example, you cannot publish multiple APKs for the same application, if the APKs differ only in the basics on the device there is a camera.
I thought to distinguish between API levels and screen size, but there seems to be an overlap:
I'm afraid that if I publish androidtv apk with a higher version, it may replace the mobile application with a tablet with API level> = 21 and a screen size of 720x1280, which is also suitable for the size of the layout for TV.
So, how can I clearly distinguish between these two apks using different filters in the application manifest?
UPDATE
I already added the rollback function in the androidtv application manifest
<manifest> <uses-feature android:name="android.software.leanback" android:required="true" /> ... </manifest>
I see 42 supported devices for androidtv apk (I can’t see which devices) and 10791 for apk mobile device and the total number of 10832 all devices supported for the entire application.
10791 + 42 = 10833
Thus, there is still the possibility of overlapping device 1 (10833 - 10832 = 1), due to which a warning is displayed.
overlap warning

androidtv apk

mobile apk

total number of devices

I do not think that the overlapping message is due to the fact that the androidtv apk is a super-set of mobile apk, as mentioned in one of the comments, looking at the number of supported devices for androidtv, which is much less.
Since there is only one possible overlapping device, I will publish it, but I would like for me to know which devices overlap in order to receive both apks.