I have an Android app which opens the camera to take a pic:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, PICTURE_RESULT);
If it is called the camera is opened and I can take picture. But the preview where to click OK or Cancel is already very bad quality.
This is strange as this is not implemented by my app. Are there any parameters to configure for the camera intent to increase the quality.