Hi,
We have to allow 2D barcode scanning in our app, Can you please tell me which intent we have to use. In register app 2D barcode scanner working fine.
This is the code we are using
Bundle extras = new Bundle(); extras.putBoolean(Intents.EXTRA_LED_ON, false); extras.putBoolean(Intents.EXTRA_SCAN_1D_CODE, true); extras.putBoolean(Intents.EXTRA_SHOW_PREVIEW, false); mBarcodeScanner.executeStartScan(extras);
Thank you.