文件名称:Android代码-信用卡读卡器
文件大小:529KB
文件格式:ZIP
更新时间:2022-08-27 19:25:58
Android代码
EMV NFC Paycard Enrollment Description Java library used to read and extract public data from NFC EMV credit cards. Android sample app available on Play store. Getting started First you need to create a custom Provider to exchange APDU with an NFC EMV credit card. public class YourProvider implements IProvider { @Override public byte[] transceive(final byte[] pCommand) { // implement this } } After that, create an instance of a parser and read the card. IProvider prov = new You