【安卓学习之常见问题】 Google Play问题-Android 4.4.4平板电脑不能安装 -- (Your device isn't compatible with this version)

█ 【安卓学习之常见问题】 Google Play问题-Android 4.4.4平板电脑不能安装 – (Your device isn’t compatible with this version)

█ 问题:

 ● 客户反应在平板电脑(android 4.4.4)上,安装不了app
 ● 找了台平板电脑(android 4.4.4),安装正常,运行正常
 【安卓学习之常见问题】 Google Play问题-Android 4.4.4平板电脑不能安装 -- (Your device isn't compatible with this version)_第1张图片
 ● 客户又测试一次,还是如此:(Your device isn’t compatible with this version)
【安卓学习之常见问题】 Google Play问题-Android 4.4.4平板电脑不能安装 -- (Your device isn't compatible with this version)_第2张图片

█ 解决:

 ● 1.核对下app的AndroidManifest.xml文件的安装限制:


    PS:编译环境是Android 5.0,安装最低版本是Android 3.0.x,没问题
 ● 2.APP直接安装可以,APP从Google Play平台上面下载不了,
   PS:问题是,APP和Google Play平台之间的问题,而平台上面也没有限制只能手机才可以安装!
 ● 3.百度 关键字 【Your device isn’t compatible with this version】
 ● 4.大概问题就是 Google Play平台会通过会对【AndroidManifest.xml】文件声明的硬件权限,来判断设备是否包含该硬件,从而过滤掉不能安装的设备,比如平板电脑不支持手机卡,那么就提示”Your device isn’t compatible with this version”。
 ● 5.将通过< uses-permission … />声明的的权限,再次通过< uses-feature … android:required=”false”/>声明一次,表示该权限不是必须的即可!具体每个权限permission对应的feature,要从【Android Developers】中去找,参考【相关资料 3 Google Play 和根据功能进行过滤】和【相关资料 4 功能参考资料】
 

█ 总结:

 ● 
 

█ 相关资料:

 ● 1.2015-11-16 Android api level对照表 - liken的专栏 - CSDN博客
 ● 2.2016-10-03 解决GooglePlayStore提示您的设备与此版本不兼容(Your device isn’t compatible with this version) - DreamCarMustang - CSDN博客
 ● 3.Android Developers - - Google Play 和根据功能进行过滤

通过指定您的应用要求的功能,可以让 Google Play 只向设备符合应用功能要求的用户而不是所有用户提供您的应用。

 ● 4.Android Developers - - 功能参考资料 - 隐含功能要求的权限

转载请注明出处:
http://blog.csdn.net/ljb568838953/article/details/80289031

你可能感兴趣的:(android学习,常见问题汇集)