对于我的应用程序,最小sdk版本为11,目标sdk版本为17.但仍显示此应用程序与Android 4.0和android 4.2不兼容 可能是什么问题??
检查此链接.. https://play.google.com/store/apps/details?id=spy.cam.unibera
答案 0 :(得分:1)
由于您已添加<uses-feature android:name="android.hardware.camera.autofocus" />
,因此Google Play会过滤不支持相机自动对焦功能的设备。示例:Samsung galaxy mini没有自动对焦功能。
尝试添加<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
注意:<uses-permission android:name="android.permission.CAMERA"/>
默认情况下包含自动对焦功能,因此如果您使用此功能,则必须添加<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
。
答案 1 :(得分:0)