You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The time between initiating the scanner and the camera fully loaded up seems to be a lot longer (a few seconds) than that of the camera app and other QR scanner apps. I am running it on iOS7. Here is code i am using:
var scanner = new MobileBarcodeScanner();
var options = new MobileBarcodeScanningOptions()
{
PossibleFormats = new List<BarcodeFormat>() { BarcodeFormat.QR_CODE },
};
options.AutoRotate = false;
options.TryHarder = false;
scanner.UseCustomOverlay = false;
scanner.Scan().ContinueWith((t) => { ShowMessage(t.Result != null ? t.Result.Text : "Canceled / No QR Code"); });
Any idea why the long pause?
The text was updated successfully, but these errors were encountered:
For repeated launches, #71 might help address startup speed...
Closing this issue for now, if you find any specific areas for concern please reopen, otherwise, i think it's just how long it takes to do this in managed code :s
The time between initiating the scanner and the camera fully loaded up seems to be a lot longer (a few seconds) than that of the camera app and other QR scanner apps. I am running it on iOS7. Here is code i am using:
Any idea why the long pause?
The text was updated successfully, but these errors were encountered: