cordova-plugin-ia-mlkit-scanner

1.1.4 • Public • Published

MLKit Barcode Scanner

Latest Stable Version Total Downloads

Scan barcodes using the 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);

Readme

Keywords

none

Package Sidebar

Install

npm i cordova-plugin-ia-mlkit-scanner

Weekly Downloads

1

Version

1.1.4

License

MIT

Unpacked Size

126 kB

Total Files

26

Last publish

Collaborators

  • cscholly
  • burnie_777
  • malarkza