I'm trying to create an NFC tag that will trigger two separate actions:
- open a Bluetooth connection
- launching an app (or going to the play store)
I've used nfc-eclipse-plugin to create a message containing two suitable records, however, when written to a tag, it always only triggers the first action. Both work individually, but the second one is always ignored.
I know that the answer to 2 NDEF mesages/records on one NFC tag - Android says that you can't have two separate messages on a tag, only multiple records within a message, but from looking at the TLV format which wraps NDEF, there seems to be nothing to actually prevent a second NDEF message from appearing before the final 0xFE marker byte?
Does anybody have any other ideas how to achieve my goal of having two separate actions on one tag?