License Handling | Cordova Document Scanner
License Key
To run the Scanbot SDK within your production app, you must purchase and use a valid Scanbot SDK license.
Each license key is valid only for a given app bundle identifier. You will be unable to use any of the SDK features if the license key is corrupted, expired, or invalid in any other way.
Getting a Trial License
The Scanbot SDK will run without a license for one minute per session.
To get an unrestricted, "no-strings-attached" 7-day trial license, please submit the Trial License Form on our website.
Kindly note that a trial license can only be used in a development and staging environment. You are not allowed to publish your app to the App Store, Play Store, or any third-party Android App Store with a trial license.
Purchase a Production License
To get pricing information and purchase a production license for the Scanbot SDK, please request a quote.
Check License Status
Use the API method getLicenseInfo()
to check the current state of the license. The SDK must be initialized.
const result = await this.SDK.getLicenseInfo();
if (result.isLicenseValid) {
// OK, we have a valid (trial) license and can now call other Scanbot SDK methods.
// E.g. launch the Document Scanner
} else {
alert('Scanbot SDK license is not valid!');
}
👉 Please refer to the detailed section License Check in Production Apps to learn more about the license check and handling in production apps.
Want to scan longer than one minute?
Generate a free trial license to test the Scanbot SDK thoroughly.
Get your free Trial License