Possible Duplicate:
How to force using zxing lib with only my application?
I use zxing to scan QRCode in Android app. I use Intent to show it:
Intent intent = new Intent("com.google.zxing.client.android.healthcode.SCAN");
intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
It is working, but if I have more app installed that use Zxing lib, I have a list of app to open this intent.
How can I force my app to use my lib ? What is the best way ?