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


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. "android.permission.CAMERA" />  
  2.       
  3.   
  4. "android.hardware.camera" android:required="false"/>  
  5. "android.hardware.camera.autofocus" android:required="false" />  

2.设置国家:

建议设置所有国家




你可能感兴趣的:(工作问题)