RFID reader

Use the method below to open RFID chip reading controller and start its processing:

DocumentReader.Instance().startRFIDReader(MainActivity.this, new IDocumentReaderCompletion() {
    @Override
    public void onCompleted(int rfidAction, DocumentReaderResults results, String error) {
        // do something
    }
});

Use the method below to stop RFID chip reading programmatically:

DocumentReader.Instance().stopRFIDReader(MainActivity.this);

Last updated