Markus Fisch
Markus Fisch
Well, then I wouldn't recommend Google Sheets because this involves quite a bit configuration and research. Nothing one would call simple. Unfortunately, I'm not aware of any public service that...
Hm, in principle yes, but would `"entry.1222603087"` be a constant for all requests to that end point? 🤔 I was thinking of adding a setting to provide a template for...
Well, it would be fairly easy to add an Intent Filter for `com.google.zxing.client.android.SCAN`. I just wasn't aware that apps do use that intent instead of including ZXing. So yes, I...
Implemented in https://github.com/markusfisch/BinaryEye/commit/d2c8ef719b040d7e249ecc8b767cd90734d06a5a
You are totally right, of course 🙈 `IMAGE_CAPTURE` doesn't make sense and the app needs to return what's read for `SCAN`.
Now at least the scan result is returned: https://github.com/markusfisch/BinaryEye/commit/7b67778a290899fc1675c8d69a4068241e6d0b33 I'll keep this issue open to remind me of evaluating the intent's extra options.
Hi, actually I got a similar idea already: I thought about showing a checksum for each history item to make it easy to see when two items are identical. But...
Well, checksums don't have to be very long 😉 It's just that the longer they are, the less likely is a collision. There are quite a lot checksum algorithms that...
Thanks for contributing and your ideas for improvement 👍 Well appreciated! And you're right! This is inconsistent behaviour and I see why it's irritating. The reason why the result screen...
> what happens when there is more than one barcode visible in camera mode? The app, ZXing's [MultiFormatReader](https://zxing.github.io/zxing/apidocs/com/google/zxing/MultiFormatReader.html), will simply scan the first barcode it detects (see [here](https://github.com/markusfisch/BinaryEye/blob/master/app/src/main/kotlin/de/markusfisch/android/binaryeye/zxing/Zxing.kt#L11)). This isn't...