Re: Mifare Ultralite C Authentication

Forum MIFARE SDK Mifare Ultralite C Authentication Re: Mifare Ultralite C Authentication

Re: Mifare Ultralite C Authentication

27. October 2014 at 7:44
Hi,
For IO operation like read and write, no need to authentication the tag.
But in Lite version of MIFARE SDK only allowed to write NDEF messages. it's the design of lite version.

Follow the below steps to Read and Write.

Override the onUltralighCardDetected() in filter intent.

@Override
public void onUltraLightCardDetected(MifareUL objUlCard) {
objUlCard.connect();
objUlCard.format();
objUlCard.write(message);
objUlCard.readNdef();
}

Thanks,
MIFARE SDK Team
+ 0  |  - 0