Navaron Bracke

fix discrepancy for barcode capture image size on Android

... ... @@ -50,9 +50,11 @@ class MobileScannerHandler(
barcodeHandler.publishEvent(mapOf(
"name" to "barcode",
"data" to barcodes,
"image" to image,
"image" to mapOf(
"bytes" to image,
"width" to width!!.toDouble(),
"height" to height!!.toDouble()
"height" to height!!.toDouble(),
)
))
} else {
barcodeHandler.publishEvent(mapOf(
... ...