Try rebuilding the project and installing the oldest version? If you fail, you can try. To create the barcode scanner, I will use the NuGet Arc.BarCodes package, a cross-platform creator built on top of ZXing.Net.Mobile, to provide easy cross-platform access from the main shared / PCL libraries. Now we can set some permissions for Android and Windows to access the camera. This is done to get a clear image of the barcode we want to scan.
For Android, open AndroidManifest.xml and select CAMERA from the required permissions. Now open WMAppManifest.xml to set permissions on Windows Phone, then select ID_CAP_ISV_CAMERA from Capabilities. Now we want to initialize the corresponding NuGet package in each launch class for the platform. For example, AppDelegate.cs for iOS, MainActivity.cs for Android, and MainPage.xaml.cs for Windows Phone, calling global :: Acr.BarCodes.BarCodes.Init (); before calling LoadApplication ();
Now create a button on the page for the barcode scanner.
Melih yilman
source share