nativescript-nfc
nativescript-nfc copied to clipboard
:pencil: NativeScript plugin to discover, read, and write NFC tags
This is my code ```typescript new Nfc().setOnNdefDiscoveredListener( (data: NfcNdefData) => { console.log(data) }, { stopAfterFirstRead: true } ).then(data => { return data; }) .catch(() => { throw new Error("nfc fail")...
Problem: when a NDEF tag is read the callback function set with `nfc.setOnNdefDiscoveredListener` is not called Expected behaviour: the callback function is called after a tag is read Platform: not...
writing to a tag is now supported in iOS 13. see `writeNDEF` at [https://developer.apple.com/documentation/corenfc/nfcndeftag](https://developer.apple.com/documentation/corenfc/nfcndeftag)
Steps to reproduce: 1. On a Mac using NativeScript CLI 8.1.4 create a new Hello World Angular project 2. Add app.entitlements and NFCReaderUsageDescription as instructed 3. Add the nativescript-nfc plugin...
Steps to reproduce: 1) On a Mac, download the nativescript-nfc project as a ZIP 2) Extract contents of archive 3) From demo directory, run 'ns run ios' Result: The current...
as soon as i execute `ns plugin add nativescript-nfc` i get the error mentioned in the title when trying to run `ns run android` my package.json looks like this: ```...
Hi, which ISO communication standard does this plugin support? Thanks in advance
NfcNdefData should contain the id. In android it work but in iOS it is empty. Is it possible get the tag uid?