Hello All,
Is there a library that we can use in React native IOS and Android to scan and Authenticate the password of NFC NTAG 213?
I was able to do this perfectly in Java Android. I want to use the library and make use of the AuthenticatePwd and read function in React Native .
Please see the below code in Java I want to do the same in React Native.
It will be of great help if anyone could help me with this.
INTag213215216 tag = NTagFactory.getInstance().getNTAG213(m_libInstance.getCustomModules());
tag.getReader().connect();
tag.authenticatePwd(pwdArray, pack);
byte [] data1 = tag.read(4);
byte [] data2 = tag.read(8);
Thanks,
Varun