Max Nox
Max Nox

Reputation: 68

React native NFC reader

the same problem react-native-nfc can't detect Mifare DESfire and from here read NFC tags in React Native app

Application build without any problem, started, but after this code, no any information, no any error, just nothing, another app from the store can detect NFC tag without the problem, but no react, can anyone help please?

NFC.addListener((payload)=>{
    alert(payload.data.id);
})

Upvotes: 2

Views: 7881

Answers (1)

Max Nox
Max Nox

Reputation: 68

Solution: need install both libraries and use first one

https://github.com/Novadart/react-native-nfc

https://github.com/observ3r/nfc-ndef-react-native

Upvotes: 3

Related Questions