Does Taplinx Android sdk support reading NTAG 424 proprietary file data ?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Does Taplinx Android sdk support reading NTAG 424 proprietary file data ?

201 Views
gopesh
Contributor I

Hi Experts,

Does the Latest TapLinx Android SDK support reading NTAG 424 proprietary file data?

Actually in my project need to implement reading NTAG 424 proprietary file data.

Thanks!

Labels (3)
0 Kudos
Reply
1 Reply

158 Views
ukcas
NXP Employee
NXP Employee

Hello gopesh,

 

Yes it supports. You can do it with following API:

  • ISOReadBinary - command requires manual encryption and MAC-ing of payload. And also you need to select NDEF file upfront with ISOFileSelect
  • ReadData (with CommMode.FULL) - recommended
  • byte[] readData(int fileNumber,
                    int offset,
                    int length,
                    MFPCard.CommunicationMode commMode,
                    byte readAccess,
                    byte readWriteAccess)

In both cases you need to perform mutual authentication first, as default Read Access Rights to Proprietary file are granted for Application Key nr. 2 (check datasheet of NTAG 424 DNA) only.

 

 

Best regards,

TapLinx team

0 Kudos
Reply