Reputation: 68
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
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