🚨 Deprecated Documentation 🚨 Please note that this documentation is no longer being updated.
We have introduced a Biometrics Complete check that sends data back to the app after every Simprints session. This check will notify the calling app if a user has completed a Simprints flow.
The Biometrics Complete check is a boolean from Simprints ID and is included as part of the activity callback.
If Biometrics Complete is True, the user has successfully completed a Simprints flow, whether an:
enrolment
identification
verification
submitted an exit form, or
encountered an error screen that they are unable to resolve
If Biometrics Complete is False, the user has not completed a Simprints flow and will need to launch Simprints before they are able to continue in their workflow.
In your app, you may want to include logic to only allow a user to progress in their workflow if the Biometrics Complete check is True.
TIER_1, // Almost certain match (fingerprints are very similar)
TIER_2, // Very good match
TIER_3, // Good match
TIER_4, // Okay match
TIER_5, // No match (fingerprints are very different)
}
Get the Biometrics Complete check from a returned Enrolment, Identification or Verification object as follows:
Boolean check = data.getBooleanExtra(Constants.SIMPRINTS_BIOMETRICS_COMPLETE_CHECK);