How the current application of QT NFC intercepts NFC responses does not pop up the selection box
-
QT NFC is used to develop a mobile app demo. The current problem is that when the application starts and reads the NFC tag, the Android system will still pop up the application selection box. After cancellation, my application can recognize the NFC tag. How to intercept these selection boxes?
I have added Inter in androidmanifest.xml_ Filter
<intent-filter> <action android:name="android.nfc.action.NDEF_DISCOVERED"/> <data android:mimeType="*/*"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> <intent-filter> <action android:name="android.nfc.action.TECH_DISCOVERED"/> </intent-filter> <intent-filter> <action android:name="android.nfc.action.TAG_DISCOVERED"/> </intent-filter>
Still can't, ask for help!