Skip to content

Instantly share code, notes, and snippets.

@DUMA042
Created January 10, 2025 22:50
Show Gist options
  • Select an option

  • Save DUMA042/4dbcf80e202860cafe8651bfb86171e7 to your computer and use it in GitHub Desktop.

Select an option

Save DUMA042/4dbcf80e202860cafe8651bfb86171e7 to your computer and use it in GitHub Desktop.
val options = BarcodeScannerOptions.Builder()
.setBarcodeFormats(
Barcode.FORMAT_QR_CODE, // QR Codes
Barcode.FORMAT_CODABAR, // Codabar
Barcode.FORMAT_CODE_93, // Code 93
Barcode.FORMAT_CODE_39, // Code 39
Barcode.FORMAT_CODE_128, // Code 128
Barcode.FORMAT_EAN_8, // EAN-8
Barcode.FORMAT_EAN_13, // EAN-13
Barcode.FORMAT_AZTEC // Aztec
)
.build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment