zxing-android-embedded icon indicating copy to clipboard operation
zxing-android-embedded copied to clipboard

Barcode scanner library for Android, based on the ZXing decoder

Results 120 zxing-android-embedded issues
Sort by recently updated
recently updated
newest added

implementation('com.journeyapps:zxing-android-embedded:4.1.0') { transitive = false } im using the lib above ever since android 11 was released this error started to happen it happens evarytime um starting the intergator ERROR...

#### Description of the problem: After I call the library in my activity it is destroyed. I tried opening a new activity and calling the library there and there was...

#### Description of the problem: When I scan an EAN13 code: https://imgur.com/a/fqHASwQ it detects as UPC_A - so the leading zero gets ignored. **Which library version are you using?** 4.1.0...

When adding the following implementtation: in gradle, I get the the unresolved class 'MainActivity error message from main activity xml file and also, Error running 'app' Default Activity not found....

needs-info

DecoratedBarcodeView barcodeView; if (barcodeView != null) { barcodeView.decodeSingle(new BarcodeCallback() { @Override public void barcodeResult(BarcodeResult result) { sendScanResult(result.getText()); } @Override public void possibleResultPoints(List resultPoints) { } }); }

#### Description of the problem: PS: If this have any similar issue that can help me please just closed this issue Hi I tried to customize the color attribute in...

bug

Stack trace: ``` Fatal Exception: java.lang.NullPointerException: Attempt to invoke interface method 'void com.journeyapps.barcodescanner.a.a(java.util.List)' on a null object reference at com.journeyapps.barcodescanner.DecoratedBarcodeView$WrappedCallback.a(DecoratedBarcodeView.java:28) at com.journeyapps.barcodescanner.BarcodeView$1.handleMessage(BarcodeView.java:93) at android.os.Handler.dispatchMessage(Handler.java:102) at androidx.test.espresso.base.Interrogator.a(Interrogator.java:11) at androidx.test.espresso.base.UiControllerImpl.n(UiControllerImpl.java:6) at androidx.test.espresso.base.UiControllerImpl.m(UiControllerImpl.java:1)...

Please add documentation about CameraSettings option, what are they doing and so on For example, what is barcode scene, what is the difference between FocusMode.AUTO and FocusMode.CONTINUOUS; FocusMode.CONTINUOUS and FocusMode.INFINITY.