App Not Visible On Certain Devices
Solution 1:
From the Android Developer docs
compatible screens:
Normally, you should not use this manifest element. Using this element can dramatically reduce the potential user base for your application, by not allowing users to install your application if they have a device with a screen configuration that you have not listed. You should use it only as a last resort, when the application absolutely does not work with specific screen configurations. Instead of using this element, you should follow the guide to Supporting Multiple Screens to provide scalable support for multiple screens using alternative layouts and bitmaps for different screen sizes and densities.
If you want your app to be distributed to any type of device, irrespective of the screen size and density, you should remove the <compatible-screens>
tag from your manifest file.
From what I understand from your manifest file, you want to support all the devices. If that's the case, go ahead and remove the <compatible-screens>
tag completely from your manifest.
However, if you have to use the <compatible-screens>
tag to restrict the availability of your app to certain screen types, you should add <screen>
entries with android:screenDensity="480"
for all the screen sizes, to support devices with xxhdpi screen density. The devices Xperia Z2 and One Plus 2 you've mentioned fall in the xxhdpi bucket, and adding the above mentioned entries will make your app available for these devices.
Post a Comment for "App Not Visible On Certain Devices"