Reply To: TapLinx Sample App compilation Error – setAppKeySettingsChangealbe(boolean)

Forum MIFARE SDK TapLinx Sample App compilation Error – setAppKeySettingsChangealbe(boolean) Reply To: TapLinx Sample App compilation Error – setAppKeySettingsChangealbe(boolean)

Re: TapLinx Sample App compilation Error – setAppKeySettingsChangealbe(boolean)

24. November 2016 at 13:39
Hi TapLinx Team,

It's fixed.it was a typo error.

There's typos errors in the sample and in the documentation as well https://www.mifare.net/files/advanced_javadoc/com/nxp/nfclib/desfire/EV1ApplicationKeySettings.Builder.html

I changed this


EV1ApplicationKeySettings appsettings = appsetbuilder.setAppKeySettingsChangealbe(true)
.setAppMasterKeyChangeable(true)
.setAuthenticationRequiredForApplicationManagment(false)
.setAuthenticationRequiredForDirectoryConfigurationData(false)
.setKeyTypeOfApplciationKeys(KeyType.TWO_KEY_THREEDES).build();


To this


EV1ApplicationKeySettings appsettings = appsetbuilder.setAppKeySettingsChangeable(true)
.setAppMasterKeyChangeable(true)
.setAuthenticationRequiredForApplicationManagement(false)
.setAuthenticationRequiredForDirectoryConfigurationData(false)
.setKeyTypeOfApplicationKeys(KeyType.TWO_KEY_THREEDES).build();


That's the fix.

Thanks,

Emmanuel
+ 0  |  - 0