Additional Scanner Options:
Java
// Default scanner for Identity Documents myIntent.putExtra(DocumentScannerActivity.EXTRA_SCANNER_TYPE, DocumentScannerActivity.SCANNER_TYPE_STANDARD);
// Scanner for Address of proof myIntent.putExtra(DocumentScannerActivity.EXTRA_SCANNER_TYPE, DocumentScannerActivity. SCANNER_TYPE_ADDRESS_OF_PROOF);
// Scanner for Selfie myIntent.putExtra(DocumentScannerActivity.EXTRA_SCANNER_TYPE, DocumentScannerActivity.SCANNER_TYPE_SELFIE);
Additional Capture Screen options:
Java
// Will show or hide Help button visibility on Capture Screen, default is hide. myIntent.putExtra(DocumentScannerActivity.EXTRA_CAMERA_HELP_IS_VISIBLE, false);
// Will show or hide Switch button visibility on Capture Screen,default is hide. myIntent.putExtra(DocumentScannerActivity.EXTRA_CAMERA_SWITCH_IS_VISIBLE, false);
// Will control visibility of Trigger button, the value is int type and set by milliseconds.
// The default value is 5000 milliseconds.
// The -1 will not show trigger button and 0 will show from start. myIntent.putExtra(DocumentScannerActivity.EXTRA_CAMERA_TRIGGER, 5000);