I have the following filters in my application. I want to be able to launch the same app using three different mimeTypes.
Later on I read the NDEF message, but how can I check what mime type was used to launch the app so I can handle the NDEF message data accordingly?
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/product" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/pesticide" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/seed" />
</intent-filter>
Here is a simplified version of how I handle csv files and text files in my app. I hope this help:
Edit-
Added:
So the code would be complete.