My app is using this Intent to take photos:
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, saveUri);
startActivityForResult(i, cameraData);
Is there any way to set the resolution of the camera?
Any advice would be greatly appreciated.
Thanks!