Two NFC tags linking to two different activities each in a project?
I'm doing an NFC Application and was wondering if this scenario is possible: Say, I have 2 NFC tags and 2 activities in one project. NFC A is written to open up Activity A by writing MIME type in NFC A as application/com.example.hello In the project's manifest file, Activity A has this intent filter: <intent-filter> <action android:name="android.nfc.action.NDEF_DISCOVERED" /> <data android:mimeType="application/com.example.hello" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> So, this works perfectly fine. I'm going to add another NFC Tag, and another activity.