I am using zxing as a library to implement the QRCode scanner. This is launched by clicking on a button. But when I click on the button, it gives a list of all the applications which has zxing installed and I have to choose my own application’s scanner.
Is there a way where I can specify to simply start the scanner without any choice being given?
You can call
setPackage("com.google.zxing.client.android")to restrict the Intent to only match the Barcode Scanner package. This is done for you if you use theIntentIntegratorcode in the project.