Forum Replies Created

  • Re: Reply To: ntag 212 not detected in MIFARE SDK Advanced Version : 4.4

    19. May 2016 at 10:29
    in reply to: ntag 212 not detected in MIFARE SDK Advanced Version : 4.4
    Just to update you guys today I have tried the .APK which comes with the Advance SDK package and found that my NTAG 212 is detected as a Ultralight card. I have checked the same with my code and put a Ultralight callback and it worked. But I can not able to read it.its a bug, please help asap!!!
    + 0  |  - 0

    Re: Reply To: ntag 212 not detected in MIFARE SDK Advanced Version : 4.4

    18. May 2016 at 10:17
    in reply to: ntag 212 not detected in MIFARE SDK Advanced Version : 4.4
    Thanks for the reply.
    I have changed my sdk to version 4.6. Still getting the same issue. Below is my code:

    public TagData receiveTag(Intent intent) {
    final TagData tagData = new TagData();
    try {
    libInstance.filterIntent(intent, new Nxpnfclibcallback() {
    @Override
    public void onDESFireEV2CardDetected(IDESFireEV2 idesFireEV2) {
    super.onDESFireEV2CardDetected(idesFireEV2);
    }

    @Override
    public void onDESFireEV1CardDetected(IDESFireEV1 idesFireEV1) {
    super.onDESFireEV1CardDetected(idesFireEV1);
    }

    @Override
    public void onNTag203xCardDetected(INTag203x inTag203x) {
    AppLog.i("onNTag203xCardDetected");
    NXPNFCTagUtil.readData(inTag203x, tagData);
    super.onNTag203xCardDetected(inTag203x);
    }

    @Override
    public void onNTag210CardDetected(INTag210 inTag210) {
    AppLog.i("onNTag210CardDetected");
    NXPNFCTagUtil.readData(inTag210, tagData);
    super.onNTag210CardDetected(inTag210);
    }

    @Override
    public void onNTag213F216FCardDetected(INTag213F216F inTag213F216F) {
    AppLog.i("onNTag213F216FCardDetected");
    NXPNFCTagUtil.readData(inTag213F216F, tagData);
    super.onNTag213F216FCardDetected(inTag213F216F);
    }

    @Override
    public void onNTag213215216CardDetected(INTag213215216 inTag213215216) {
    NXPNFCTagUtil.readData(inTag213215216, tagData);
    super.onNTag213215216CardDetected(inTag213215216);
    }

    @Override
    public void onNTagI2CCardDetected(INTagI2C inTagI2C) {
    AppLog.i("onNTagI2CCardDetected");
    super.onNTagI2CCardDetected(inTagI2C);
    }

    @Override
    public void onNTagI2CplusCardDetected(INTAGI2Cplus intagi2Cplus) {
    AppLog.i("onNTagI2CplusCardDetected");
    super.onNTagI2CplusCardDetected(intagi2Cplus);
    }

    @Override
    public void onCardNotSupported(Tag tag) {
    AppLog.i("card not supported");
    super.onCardNotSupported(tag);
    }


    });
    } catch (CloneDetectedException e) {
    e.printStackTrace();

    }
    return tagData;
    }



    with NTAG 203 it is working and I am getting the log : 05-18 13:37:27.035 16562-16562/ I/nxp: onNTag203xCardDetected
    but with NTAG 212 it is not working. I have attached a copy of my NTAGs.
    + 0  |  - 0
Viewing 2 posts - 1 through 2 (of 2 total)