Resources for Xamarin for Android NotFoundException ZXingNetMobile

I am trying to use ZXingNetMobile to scan a QR code on Android, but I am getting this error:

Error opening scanner

This is the function I use:

public async Task<string> ScanQrCode() { var scanner = new ZXing.Mobile.MobileBarcodeScanner(); var result = await scanner.Scan(); return result.Text; } 

And this is my configuration:

Android project configuration

SDK Manager

EDIT

Here is my package.config:

enter image description here

+5
source share

Source: https://habr.com/ru/post/1259441/


All Articles