Enrollment
What is Enrolment?
Enrolment Flow
Trigger Enrolment
Register activity result handler
val simprintsLauncher = registerForActivityResult(SimprintsContract()) { response ->
if (response.resultCode != Activity.RESULT_OK) {
// check-out Handling Errors page for reference
}
if (response.refusal != null) {
// check-out Exit Form handling
}
if (response.biometricsComplete && response.enrolment != null) {
// this is the GUID to be saved with the person's data
val simprintsUniqueId = response.enrolment.guid
}
}Launch the request
Handling Alternate Scenarios
Legacy versions usage
Last updated
Was this helpful?