Updated on 2026-08-14

This commit is contained in:
Tangem 2019-02-27 21:44:59 +03:00
parent 7c4cc8fcde
commit 85f9a17bb0
245 changed files with 401 additions and 18 deletions

View file

@ -0,0 +1,20 @@
package com.tangem.tangemcommon.reader;
import java.io.IOException;
public interface NfcReader {
byte[] getId();
void setTimeout(int timeout)throws IOException;
int getTimeout();
byte[] transceive(byte[] data) throws IOException;
void ignoreTag() throws IOException;
void notifyReadResult(boolean success);
void connect();
}