"Your device isn't compatible with this version" 部分设备无法从google play下载app

前段时间运营同事反馈说,《战魂》美服部分玩家陆陆续续发邮件反应无法从google play下载apk,但可以通过浏览器从网站下载并安装。 这种情况baidu上没找到原因,go

前段时间运营同事反馈说,《战魂》美服部分玩家陆陆续续发邮件反应无法从google play下载apk,但可以通过浏览器从网站下载并安装。


这种情况baidu上没找到原因,google后发现报错原因,故记录下来以供大家更方便的查找错误。


google play会对那些app里使用了相关硬件权限的情况做处理(比如: android.permission.CAMERA), 某些设备就不能直接从google play

下载app(比如: Nexus 7),表象就如图所示提示"Your device isn't compatible with this version"。


对于此种情况,告诉google play,我这个权限并非必须使用即可。

<uses-permission android:name="android.permission.CAMERA" />
   	
<!-- 解决某些设备不能从google play下载app的问题,声明此硬件使用并非必要-->
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />

关于 <uses-feature> 的使用可以参考官方文档  http://developer.android/guide/topics/manifest/uses-feature-element.html

关于 Nexus 7 的使用可以参考官方文档 http://android-developers.blogspot.ch/2012/07/getting-your-app-ready-for-jelly-bean.html

关于 Camera 的使用可以参考官方文档 http://developer.android/guide/topics/media/camera.html#detect-camera

这里可以看到详细的解释 http://stackoverflow/questions/21484209/play-store-reports-your-device-isnt-compatible-with-this-version-but-it-insta



发布者:admin,转转请注明出处:http://www.yc00.com/web/1754590996a5179073.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信