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

来源:互联网 发布:js如何把div隐藏 编辑:程序博客网 时间:2024/05/22 13:35


1. 权限:

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

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


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

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

2.设置国家:

建议设置所有国家




阅读全文
0 0
原创粉丝点击