Vlens liveness Mobile SDK
Introduction :
Vlens liveliness Package is a Flutter package that provides a simple and easy-to-use way to verify the liveliness of a user. The package takes 3 of these posses :
Look Left: Turn to the left to initiate the verification process.
Look Right: Turn to the right to initiate the verification process.
Blink: A quick blink of your eyes confirms your presence.
Smile: Flash a genuine smile to seal the deal.
and if the user succeed that will verify liveliness.
Installation:
#iOS
Add two rows to the ios/Runner/Info.plist file:
One with the key Privacy - Camera Usage Description and a usage description. If editing Info.plist as text, add: NSCameraUsageDescription your usage description here add:
<key>NSCameraUsageDescription</key>
<string>your usage description here</string>#Android
Change the minimum Android SDK version to 21 (or higher) in your android/app/build.gradle file. minSdkVersion 21
Add the following permission to your app's manifest, located at android/app/src/main/AndroidManifest.xml:
Copy the package file provided by vlens to your app folder.
Add the package in pubspec.yaml file under the dependencies :
Run the following command to install the package: flutter pub get
Once you have completed these steps, you will be able to use the VLens package in your Flutter app.
Example :
Last updated