im new to all the programming stuff so please forgive me If my question is rather stupid ;)
I integrated zxing directly as a library and now im trying to scan some QR Codes and get the result. But sadly I have no idea how to get it.
I found some hints that it works with "onActivityResult(int requestCode, int resultCode, Intent intent) "and for that i have to declare a new intent like this
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
But if I copy this code to my app, it will always try to open a thirdparty app. Thats exactly what i dont want. Im sure my mistake is very obvious, but I dont see it ;) Would be happy about every help.
