When I start the barcode scanner and i hit the back-button while the screen is still initialising (the screen is white with the red line on it) it crashes straight into the debugger. I saw in the change-log that this bug is (supposed to be) fixed in release 1.4.2 but I'm using 1.4.7.1 from nuget and it still occurs. Could you please look in to this because even in a try/catch I can not catch the exception thrown.
Platform: windows phone 8.0
my codesnippet:
var scanner = new ZXing.Mobile.MobileBarcodeScanner(this.Dispatcher);
try{
var result = await scanner.Scan(); // hit back in init and crash the app
} catch (Exception ex) {
// nothings catched here
}
Hi,
When I start the barcode scanner and i hit the back-button while the screen is still initialising (the screen is white with the red line on it) it crashes straight into the debugger. I saw in the change-log that this bug is (supposed to be) fixed in release 1.4.2 but I'm using 1.4.7.1 from nuget and it still occurs. Could you please look in to this because even in a try/catch I can not catch the exception thrown.
Platform: windows phone 8.0
my codesnippet:
var scanner = new ZXing.Mobile.MobileBarcodeScanner(this.Dispatcher); try{ var result = await scanner.Scan(); // hit back in init and crash the app } catch (Exception ex) { // nothings catched here }
TIA