I have used Intent to integrate the zxing barcode scanner into my application but i am lost on what needs to be in the manifest. As of right now when i click on the button to la
Do you want to call the installed Barcode Scanner app? I did the same a week ago.
Here's my code:
Intent intent = new Intent("com.google.zxing.client.android.SCAN"); intent.putExtra("SCAN_MODE", "PRODUCT_MODE"); startActivityForResult(intent, 0);
AndroidManifest.xml
Hope this helps.