Results 2 comments of Alan Gan

I got it to work by changing the following lines in `__init__.py` ```python libs = ["javase/javase.jar", "core/core.jar"] args = ["-cp", "LIBS", "com.google.zxing.client.j2se.CommandLineRunner"] ``` to ```python libs = ["javase/javase.jar"] args =...

You can build a standalone jar yourself from the zxing project and distribute that along with your application. Simply run: ``` cd zxing/javase/ mvn -DskipTests package assembly:single ``` A standalone...