I see the camera preview withouts problem and the streming works well.
But the camera autofocus doen’t work.
goCoderCameraView.getCamera().hasCapability(WZCamera.FOCUS_MODE_CONTINUOUS) --> Returns true!
WZCamera camara = goCoderCameraView.getCamera();
camara.getFocusMode(); --> returns 4 (off)
camara.setFocusMode(WZCamera.FOCUS_MODE_CONTINUOUS);
camara.getFocusMode(); --> still returns 4 (off)<br>
How can I enable focus ?
Thanks in advance!