leafiy / cordova-plugin-ia-mlkit-scanner

Google MLKit barcode scanning plugin for Cordova

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MLKit Barcode Scanner

Latest Stable Version Total Downloads

Scan barcodes using Google MLKit.

This plugin supports the android and ios platforms.

Installation

cordova plugin add cordova-plugin-ia-mlkit-scanner

If using Ionic:

ionic cordova plugin add cordova-plugin-ia-mlkit-scanner

Usage

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);

About

Google MLKit barcode scanning plugin for Cordova

License:MIT License


Languages

Language:Java 71.1%Language:Objective-C 28.2%Language:JavaScript 0.7%