Forum Replies Created

  • Re: Re: Mifare SDK Advanced Version

    5. December 2014 at 12:09
    in reply to: Mifare SDK Advanced Version
    The MIFARE Advanced SDK is available now!

    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: DESFire getUID with lite SDK

    5. December 2014 at 12:06
    in reply to: DESFire getUID with lite SDK
    Before you have access to the DESFire card you always have to authenticate first! See Desfire.authenticate().

    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: Communication with Mifare DESFire in Delphi

    26. November 2014 at 10:29
    in reply to: Communication with Mifare DESFire in Delphi
    We are sorry. MIFARE SDK is android SDK as of now.

    -
    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: trouble to read sectors 16 and up in mifare classic 4k with mifare sdk

    26. November 2014 at 8:58
    in reply to: trouble to read sectors 16 and up in mifare classic 4k with mifare sdk
    Please try the latest MIFARE SDK Lite version - v02.00.00.1446

    -
    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: Mifare SDK Advanced Version

    26. November 2014 at 8:57
    in reply to: Mifare SDK Advanced Version
    MIFARE SDK Advanced version is available now. Please check out.

    -
    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: Mifare Classic Personalization

    26. November 2014 at 8:50
    in reply to: Mifare Classic Personalization
    Please try with latest MIFARE SDK Lite - v02.00.00.1446 version.

    -
    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: mifare sdk????

    26. November 2014 at 8:47
    in reply to: mifare sdk????
    Hi,
    This issue should not have come. In any case, please try with latest version of MIFARE SDL Lite - v02.00.00.1446.

    Thank you.
    MIFARE SDK Team
    + 0  |  - 0

    Re: Re: Mifare Classic Personalization

    24. November 2014 at 8:15
    in reply to: Mifare Classic Personalization
    Hi ,


    you can personalize a sector multiple times.

    After first time personalize, if you want to again personalize the same sector follow the below steps by keeping the key and appID unchanged.

    public void onClassicCardDetected(final MFClassic objMFCCard) {
    classic = objMFCCard;
    byte sectorNo = 2;
    byte[] key = { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
    (byte) 0xFF, (byte) 0xFF }; (factory default key)
    byte[] appId = new byte[] { 0x11, 0x11, 0x11 }; //should be 3 bytes
    try {
    classic.format(sectorNo, key);
    classic.personalize(sectorNo, appId, key);
    classic.authenticate(sectorNo, appId, key);
    classic.write(bdata);
    classic.read(16);
    } catch (Throwable t) {
    }
    }

    Go through the samplelite application source code for more details.

    Thanks,
    + 0  |  - 0

    Re: Re: DESFire Limitations with SDKLite

    13. November 2014 at 12:04
    in reply to: DESFire Limitations with SDKLite
    Hello amolscitphil, Please refer to User Manual for LITE API limitations. Thank you.
    + 0  |  - 0

    Re: Re: Mifare SDK security

    10. November 2014 at 9:52
    in reply to: Mifare SDK security
    Hi fsurleau,
    This is just for first time registration and do not need always.

    -
    MIFARE SDK Team
    + 0  |  - 1

    Re: Re: MIFARE SDK Advanced : “Page Forbidden”

    4. November 2014 at 9:19
    in reply to: MIFARE SDK Advanced : “Page Forbidden”
    Advanced version is just about to be announced. Thank you for your patience.
    + 0  |  - 0

    Re: Re: Newbie – How to become a Smartcard developer using MIFARE SDK

    4. November 2014 at 9:17
    in reply to: Newbie – How to become a Smartcard developer using MIFARE SDK
    Hello onyekachi,
    Welcome to MIFARE world. You came to the right place. MIFARE SDK is the quickest way to develop smartcard applications. You just need Google ADT + MIFARE SDK to start with.

    Please download the SDK and follow the Getting Started Guide(UM10809) pdf.

    All the best!!!
    + 0  |  - 0

    Re: Re: SampleNxpNfcLiteLis crashing on Samsung Note 3

    29. October 2014 at 9:32
    in reply to: SampleNxpNfcLiteLis crashing on Samsung Note 3
    Thank you for the confirmation.
    + 0  |  - 0

    Re: Re: SampleNxpNfcLiteLis crashing on Samsung Note 3

    27. October 2014 at 7:53
    in reply to: SampleNxpNfcLiteLis crashing on Samsung Note 3
    Hi lucaskc,


    Please share us the crash log.

    Note: Mifare sdk lite library is not supported for rooted device.

    If your device is rooted it should show a dialog "Sorry!! MIFARE SDK does not work on rooted devices."
    + 0  |  - 0

    Re: Re: Mifare Ultralite C Authentication

    27. October 2014 at 7:44
    in reply to: Mifare Ultralite C Authentication
    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
Viewing 15 posts - 286 through 300 (of 319 total)