"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. <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.設置國家:

建議設置所有國家




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章