0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 12:02:17 +02:00
Yet another barcode scanner for Android
Go to file
Markus Fisch 37b6e6f832 Update version code to upload new build
Because building with the NDK still doesn't work for all Android
versions :(
2020-08-08 15:37:32 +02:00
app Update version code to upload new build 2020-08-08 15:37:32 +02:00
fastlane/metadata/android Add changelog for latest version for f-droid 2020-06-23 21:38:07 +02:00
gradle/wrapper Update build tools and gradle wrapper 2020-05-31 13:15:46 +02:00
svg Add a menu item to export generated barcode as SVG 2020-06-11 16:04:00 +02:00
.gitignore Add gradle.properties to repository 2019-11-14 12:58:43 +01:00
build.gradle Update tools version 2020-08-03 18:06:30 +02:00
CHANGELOG.md Advance version number to 1.34.0 2020-08-07 14:34:05 +02:00
CONTRIBUTING.md Fix typo in remark about commit messages 2020-02-08 12:43:57 +01:00
gradle.properties Enable R8 and BLAS mode explicitly 2020-08-07 14:12:59 +02:00
gradlew Enable R8 and BLAS mode explicitly 2020-08-07 14:12:59 +02:00
gradlew.bat Update gradle, build tools and remove Error Prone 2019-05-07 17:05:50 +02:00
LICENSE Added a license 2017-08-27 16:30:32 +02:00
Makefile Add a rule to dump meminfo of debug version 2020-05-15 13:38:51 +02:00
PRIVACY.md Fix line break in PRIVACY 2019-11-11 16:53:34 +01:00
README.md Enable R8 and BLAS mode explicitly 2020-08-07 14:12:59 +02:00
settings.gradle Include CameraView library over jitpack 2018-03-01 14:34:45 +01:00

Binary Eye

Yet another barcode scanner for Android. As if there weren't enough.

This one is free, without any ads and open source.

Works in portrait and landscape orientation, can read inverted codes, comes in Material Design and can also generate barcodes.

Binary Eye uses the ZXing ("Zebra Crossing") barcode scanning library.

Screenshots

Screenshot Scanning Screenshot Result Screenshot Compose Barcode

Download

Get it on F-Droid Get it on Google Play

Supported Barcode Formats

Read

ZXing can read the following barcode formats:

Generate

ZXing can generate the following barcode formats:

RenderScript

This app uses RenderScript to resize and rotate the camera image. Unfortunately, RenderScript has some nasty gotchas.

RenderScript.forceCompat()

It's necessary to call RenderScript.forceCompat() on some devices/roms.

RenderScript.forceCompat() needs to be run before any other RenderScript function and unfortunately there is no way to know if invoking forceCompat() is necessary or not.

If RenderScript.forceCompat() is necessary, a RSRuntimeException will be thrown and the only option is to restart the app, this time with calling forceCompat() first.

Calling RenderScript.forceCompat() means the processing is done in software so you probably don't want to enable it by default.

2D barcodes

If you want to fork this and are only interested in reading 2D barcodes (like QR or Aztec), you may want to remove the custom rotation kernel altogether as ZXing can read 2D barcodes in any orientation.

This will make your app a bit simpler and saves you from compiling a custom RenderScript kernel for each architecture you want to support.