Could you help me with an example which uses NFC. What NDEF structure should i have in order to run an App by its package name?
Could you help me with an example which uses NFC. What NDEF structure should i have in order to run an App by its package name?
Hi,
According to this page, android with API level 4.0 or greater will parse any NFC message and look for an AAR type:
You can add an AAR to any NDEF record of your NDEF message, because Android searches the entire NDEF message for AARs.
It seems that you only need to add the specific format that AAR requires, and if the device supports this feature, it will handle it accordingly.
Cheers, Håkon
Hi,
According to this page, android with API level 4.0 or greater will parse any NFC message and look for an AAR type:
You can add an AAR to any NDEF record of your NDEF message, because Android searches the entire NDEF message for AARs.
It seems that you only need to add the specific format that AAR requires, and if the device supports this feature, it will handle it accordingly.
Cheers, Håkon