diff --git a/android/manifest b/android/manifest index a42ba93e..6fabe777 100644 --- a/android/manifest +++ b/android/manifest @@ -2,7 +2,7 @@ # this is your module manifest and used by Titanium # during compilation, packaging, distribution, etc. # -version: 4.0.2 +version: 4.0.3 apiversion: 4 architectures: arm64-v8a armeabi-v7a x86 description: Lets you process 1D/2D barcodes. diff --git a/android/src/ti/barcode/BarcodeModule.java b/android/src/ti/barcode/BarcodeModule.java index 4411d65d..2a774d76 100644 --- a/android/src/ti/barcode/BarcodeModule.java +++ b/android/src/ti/barcode/BarcodeModule.java @@ -219,6 +219,7 @@ private Hashtable populateHints(HashMap args) { } } hints.put(DecodeHintType.POSSIBLE_FORMATS, decodeFormats); + hints.put(DecodeHintType.ASSUME_GS1, null); return hints; }