
This app needs to be able to generate QR Codes regardless of what other app might be installed, so zxing's core.jar needs to be embedded in this app. This also includes two classes which are modified versions of ZXing classes that allow the generation of QR Codes without the Barcode Scanner app being installed: https://stackoverflow.com/questions/4782543/integration-zxing-library-directly-into-my-android-application The classes are src/com/google/zxing/encode/Contents.java which is a copy of zxing/android/src/com/google/zxing/client/android/Contents.java; and src/com/google/zxing/encode/QRCodeEncoder.java which is a heavily stripped and modified version of zxing/android/src/com/google/zxing/client/android/encode/QRCodeEncoder.java refs #3204 https://dev.guardianproject.info/issues/3204 refs #2470 https://dev.guardianproject.info/issues/2470
18 lines
627 B
Plaintext
18 lines
627 B
Plaintext
zxing
|
|
-----
|
|
|
|
ZXing ("zebra crossing") is an open-source, multi-format 1D/2D barcode image
|
|
processing library implemented in Java, with ports to other languages.
|
|
|
|
https://github.com/zxing/zxing
|
|
|
|
Building zxing from scratch is a massive pain, so we use the official jar.
|
|
The main source repo is SVN, so we couldn't do a git submodule anyway.
|
|
|
|
The releases should be signed by this key:
|
|
Sean Owen (ZXing) <srowen@gmail.com>
|
|
CE32 85F3 2068 5193 D11F EA01 F6CE 9695 C931 8406
|
|
|
|
http://central.maven.org/maven2/com/google/zxing/core/3.0.1/core-3.0.1.jar
|
|
http://central.maven.org/maven2/com/google/zxing/core/3.0.1/core-3.0.1.jar.asc
|