Skip to content

IntelliAcc/cordova-plugin-ia-mlkit-scanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published