Closed abhisekm closed 5 years ago
As a temporary fix, I am creating a custom CameraActivity class to add argument so that the init logic is not skipped.
Hi @abhisekm, working on it.
Fixed, please take a look at the latest version.
Thank you for the quick fix.
Ziggeo ziggeo = new Ziggeo(APP_TOKEN, this);
RecorderConfig config = new RecorderConfig.Builder()
.callback(prepareCallback())
.quality(CameraView.QUALITY_LOW)
.facing(CameraView.FACING_FRONT)
.sendImmediately(false)
.enableCoverShot(false)
.maxDuration(20000)
.build();
ziggeo.configureRecorder(config);
ziggeo.startCameraRecorder();
I am using the above code, but quality and camera facing is not changing.
In file
com.ziggeo.androidsdk.ui.fragments.BaseVideoRecorderFragment
,init()
function,getArguments()
is always returning null when usingziggeo.startCameraRecorder()
hence its skipping the init of variables from RecorderConfig and using default values. Can you see into this problem.Thank you.