Does anyone know how you can understand why the Google Play Store marks specific devices for an application that you created as "incompatible"?
I created an application and one of my test devices was GalaxyTab2. On this device, all the functions of the application do not work when you simply put apk on the device using a USB cable / or simply download it from the website.
However, when I download the application to the playstore, GalaxyTab2 is listed as an unsupported device. GalaxyTab2 users cannot install the application.
In the Google Play Developer Console, you can view an overview of unsupported devices. But it looks like you cannot get the information “why” the device is not supported. This version lists 1000 devices. Many of them will be unsupported due to the fact that their version of Android is too old. But from some devices (for example, GalaxyTab 2) I am sure that they can launch apk without any problems.
Some lines of my manifest:
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.FLASHLIGHT" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" />
Knarf source share