Skip to content

Commit

Permalink
Merge pull request #14 from seanpcoyle/patch-1
Browse files Browse the repository at this point in the history
Add data matrix support for Android
  • Loading branch information
mgcrea authored Nov 17, 2023
2 parents 87862b1 + b482321 commit 3ce2086
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ private BarcodeScanner getBarcodeScannerClient(
case "code-93":
barcodeFormats.add(Barcode.FORMAT_CODE_93);
break;
case "data-matrix":
barcodeFormats.add(Barcode.FORMAT_DATA_MATRIX);
break;
case "ean-13":
barcodeFormats.add(Barcode.FORMAT_EAN_13);
break;
Expand Down

0 comments on commit 3ce2086

Please sign in to comment.