Configuration

data class Configuration @JvmOverloads constructor(val cameraFacing: CameraFacing = CameraFacing.FRONT, val cameraPreviewScaleType: CameraPreviewScaleType = CameraPreviewScaleType.FIT, val isTorchEnabled: Boolean = false, val isDetectionLayerVisible: Boolean = false, val sessionToken: String? = null)

Configuration for the MagnifEye Liveness UI component.

Constructors

Link copied to clipboard
fun Configuration(cameraFacing: CameraFacing = CameraFacing.FRONT, cameraPreviewScaleType: CameraPreviewScaleType = CameraPreviewScaleType.FIT, isTorchEnabled: Boolean = false, isDetectionLayerVisible: Boolean = false, sessionToken: String? = null)

Properties

Link copied to clipboard

Front or back camera facing. Default value is CameraFacing.FRONT.

Link copied to clipboard

The camera preview scale type. Default value is CameraPreviewScaleType.FIT.

Link copied to clipboard

If detection UI layer (tracking circle) is visible. Default value is false.

Link copied to clipboard
val isTorchEnabled: Boolean = false

If torch is enabled during the process. If the camera doesn't have a flash unit, then this setting will be ignored. Default value is false.

Link copied to clipboard
val sessionToken: String? = null

Session token provided by DIS (Digital Identity Service). Set the session token if the result should be posted to DIS for evaluation. Default value is null.