I have an Ionic 4 cordova project which I want to integrate the MicroBlink BlinkID Plugin to scan PDF417 barcodes. I installed the BlinkID Plugin following instructions from the Ionic website and added the snippet to scan barcodes. However I get an error on the line where we call the BarcodeRecognizer function.
const barcodeRecognizer = new this.blinkId.BarcodeRecognizer();
barcodeRecognizer.scanPdf417 = true;
The error from XCode console is; WARN: Native: tried calling BlinkId.BarcodeRecognizer, but the BlinkId plugin is not installed. WARN: Install the BlinkId plugin: 'ionic cordova plugin add blinkid-cordova’
Can anyone please assist.