Activate only Smile Check Liveness
We add a feature to enable smile pose and passive liveness only for verification (by deactivating active liveness instruction).
On Android SDK version 0.6.0 and iOS SDK version tag 1.3.0, we add a feature to only activate smile liveness instruction and passive liveness only experience. However, considering liveness detection technology is used for verification we notice to check your business security level before deciding to implement passive liveness or active-passive liveness on your application.
By default, our Liveness SDK is combining active and passive liveness algorithms. To get a passive liveness experience only, you can disable the Active Liveness by adding intent extras
IS_USING_ACTIVE_LIVENESS
with FALSE
value on your project (The default value is true).intent = new Intent(MainActivity.this, Liveness.class);
intent.putExtra("SUBMISSION_TOKEN", "{YOUR_SUBMISSION_TOKEN}");
intent.putExtra("THRESHOLD", "{THRESHOLD_HERE}");
intent.putExtra("IS_USING_ACTIVE_LIVENESS", FALSE);
By default, our Liveness SDK is combining active and passive liveness algorithms. To get a passive liveness experience only, you can disable the Active Liveness by adding
SDKCOntroller
isUsingActiveLiveness
with FALSE
value on your project.@IBAction func startSDK(_ sender: UIButton) {
SDKController = SDKViewController(accessKey: self.accessKey, secretKey: self.secretKey, submissionToken: self.submissionToken ?? "", isUsingActiveLiveness: false)
SDKController?.delegate = self
self.present(SDKController!, animated: true)
}
Tips to deactivate the Active Liveness via Client Backend
To make easy updating without changes on the application level for the quick update, you can set up the parameter through your backend, you can follow our authorization using the submission token scheme here. Return the value of the active liveness condition by your backend response so you guys can activate or deactivate the active liveness feature on the fly (without doing updates in-app store or play store).