react-native-nfc-manager icon indicating copy to clipboard operation
react-native-nfc-manager copied to clipboard

How does registerTagEvent use NFCV

Open yfs-2000 opened this issue 3 years ago • 0 comments

async function fn() {
      try {
        await NfcManager.requestTechnology(NfcTech.NfcV);
        await readNdefListen();
      } finally {
        await NfcManager.cancelTechnologyRequest();
        fn();
      }
    }
    fn();

That's the only way I could do it. RegisterTagEvent didn't find a way to use NfcV technology

yfs-2000 avatar Aug 15 '22 03:08 yfs-2000