Replies: 3 comments
-
BTW, I saw in the readme the mention Still seeking the magic combination of commands... Updated plugin config:
|
Beta Was this translation helpful? Give feedback.
-
Relevant code snippet:
|
Beta Was this translation helpful? Give feedback.
-
Also tried to simplify the code and more closely follow the examples (also removing the
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! I'm trying to read a tag's UID (serial number). This is easily done on Android, but I haven't found the magic combination of commands to do the same on iOS.
Wakdev's NFC tools on Android identifies the tag as ISO 14443-4 / Mifare Plus , with IsoDep & NfcA technologies. The iOS version of the same app says the tag type is ISO 7816 / Infineon Technologies, with "unknown" technology.
Both apps display the correct serial number.
I've attempted a whole host of different ways to read. I've found the library finds the tag with
NfcManager.requestTechnology([NfcTech.IsoDep, NfcTech.NfcA])
, but then.getTag()
returns an empty object{}
and every attempt to try to read the tag, including withNfcManager.isoDepHandler.transceive
, has resulted in (at best) aNot connected
error.I'm using Expo. This is my plugin config:
Since the iOS version of NFC Tools returns the serial number, it seems like it should be possible to get it with this library. I appreciate any suggestions... Thanks!
Beta Was this translation helpful? Give feedback.
All reactions