Here is the material that matters from my Android application manifest file. I am looking at Android API support level 4 and above with target = 14 supporting all screens.
Developer Console shows API Level: 4-16 + Supported Screens: small-xlarge OpenGL Textures: all
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <uses-permission android:name="android.permission.INTERNET"></uses-permission> <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> <uses-permission android:name="android.permission.WAKE_LOCK"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES" /> <uses-permission android:name="android.permission.WIFI_CHANGE_STATE"/> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" />
Here is the Google Play App link
Below is the device data for the device from which my application is not compatible when downloading the Google Play application.
Motorola DROID Bionic Android Vs 4.0.4 Verizon Wireless CDMA
System Version 6.7.230.XT875.Verizon.en.US (ICS Build leak for DROID Bionic) Build number 6.7.2-223
I tried to enable copy protection on Google Play, but the same result.
I canโt understand what causes this incompatibility with my application and device because Google Play Publishing shows that this device is supported by my version of apk.
Is there any chance that I am using an ICS build leak for Bionic, is there something related to this? It would be very helpful if someone with 4.0.4 or (an Android device using any version of ICS) can try to download the application from Google Play and see if the application is incompatible with their device or just me. Beyond these suggestions, ways to fix this would be extremely helpful.
Thank you very much.
Update: I am using two SDKs with App-Flurry SDK and Skyhook Wireless SDK files, both of which are compatible with Android 4.0. I also added the Android Support Library and compiled the codebase with Android 4.0.3, and the application is still not compatible with the device and the line mentioned above with Android 4.0.4
source share