Pregunta

I have Phonegap app, when I upload it to Play store for publish, I see, that APK has these features:

android.hardware.CAMERA
android.hardware.camera.AUTOFOCUS
android.hardware.LOCATION
android.hardware.location.GPS
android.hardware.location.NETWORK
android.hardware.screen.LANDSCAPE
android.hardware.TOUCHSCREEN

and these requirements:

android.permission.ACCESS_COARSE_LOCATION
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
android.permission.ACCESS_NETWORK_STATE
android.permission.BROADCAST_STICKY
android.permission.CAMERA
android.permission.INTERNET
android.permission.READ_EXTERNAL_STORAGE
android.permission.READ_PHONE_STATE
android.permission.WRITE_EXTERNAL_STORAGE

I don't see a reason why Sony Xperia E is not supported. Can anybody give me some details ? Thanks in advance.

¿Fue útil?

Solución

Apparently, the SONY Xperia E has a fixed-focus camera, and therefore you are failing on your requirement for autofocus.

If you do not absolutely need autofocus, add a <uses-feature> element to say that autofocus is not required:

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top