i am making a Android App with discovery nfc. When i discovery a NFC tag, i have to select the application (Default android app and my app).
What i can do in my app for Android system dont ask what app i what open? My idea is launch my app for default.
<activity android:name=".Test">
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>