CameraFragment
CameraFragment copied to clipboard
Not support for Android 8.0+ with FileProvider
Error: E/Camera2Manager: IOException preparing MediaRecorder: /storage/....
Please support for Android 8.0 with FileProvider
Hello, I have similar problem. but my Exception is MediaRecorder : prepare failed This is my solution final CameraFragment cameraFragment = CameraFragment.newInstance(new Configuration.Builder() .setCamera(Configuration.CAMERA_FACE_REAR).setMediaAction(Configuration.MEDIA_ACTION_VIDEO).setVideoDuration(GlobalFlagBase.VIDEO_DURATION).setMediaQuality(Configuration.MEDIA_QUALITY_LOW).build());
In my case, i solved that set media quality is low
I hope it becomes a reference. good luck