Android Why is my application not available on some compatible devices?

淺唱寂寞╮ 提交于 2019-12-12 03:22:15

问题


I have recently launched my application into the Google Play store but unfortunately some users are unable to download the application due to market restrictions. Users are able to install the apk directly without the market, so I guess it must be something to do with the manifest?

<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="14" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE"/>

The application can be found here http://tinyurl.com/cnejnjs

Screen layouts: SMALL NORMAL LARGE XLARGE Required device features android.hardware.touchscreen This application is available to over 185 devices.

For example one user has had trouble downloading it to his Galaxy Note.


回答1:


The Galaxy Note runs Android 2.3.6, which is API Level 10. You are mandating at least API Level 11.




回答2:


It turns out having Copy Protection set to on within the application was causing this issue.



来源:https://stackoverflow.com/questions/9875810/android-why-is-my-application-not-available-on-some-compatible-devices

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!