1.1.4 • Published 3 years ago
cordova-plugin-ia-mlkit-scanner v1.1.4
MLKit Barcode Scanner
Scan barcodes using the Google MLKit. This plugin supports the android and ios platforms.
Installation
cordova plugin add cordova-plugin-ia-mlkit-scannerIf using Ionic:
ionic cordova plugin add cordova-plugin-ia-mlkit-scannerUsage
Barcode Scanner
To call up the barcode scanner, refer to this example code:
enum CameraFacing {
BACK = 0,
FRONT = 1
}
function onSuccess(barcode) {
console.log("Success:" + barcode);
}
function onError(message) {
console.log("Error:" + message);
}
window["MLKitBarcodeScanner"].scanBarcode(CameraFacing.FRONT, onSuccess, onError);Check Play Service Availability (ANDROID)
As this plugin is based on Google's MLKit, Play services is required for it to function correctly on Android devices. You can check if the host device has support, by calling checkSupport:
function onSuccess(isSupported) {
console.log("Has Support: " + isSupported);
}
function onError(message) {
console.log("Error: " + message);
}
window["MLKitBarcodeScanner"].checkSupport(onSuccess, onError);