berbix-cordova-plugin
v2.1.1
Published
Cordova plugin for using the Berbix Verify flow.
Downloads
100
Readme
Berbix Cordova Plugin
Installation
Install prerequisites
cordova platform add ios
cordova platform add android
cordova plugin add cordova-plugin-add-swift-supportConfiguration
In your config.xml, add the following configuration to the <platform name="ios"> tag.
<preference name="deployment-target" value="11.0.0" />In your config.xml, add the following configuration to the top level.
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
<string>To take photos of your identity documents for verification purposes.</string>
</edit-config>Plugin installation
Ensure that your Cordova project can build before installing the Berbix plugin.
cordova buildFinally, install the Cordova plugin.
cordova plugin add berbix-cordova-pluginUsage
berbix.verify(
function() {
// Verification has completed successfully
},
function(err) {
// Verification did not complete successfully
},
{
client_token: "your client token here"
}
);