NFC Tag input

I my app I want to have a field were the user just can scan a tag (like NFC) with there phone.
It’s basically like scanning a chip in a dog to recognise the dog. (Hope this is clear) Application is similar.

The value of the tag should be the filled in the TAG field.
So I just created a text field but when I select that and hold my phone to the nfc tag nothing happens (which is a bit expected because I never indicated that the NFC scanner needs to be on)

Anyone know how to do this ?

Thanks

I do not believe Glide can interact with the device’s NFC capabilities. You would need some kind of bar code integration to implement scanning to enter information in this manner.

1 Like

Hmmm that would be unfortunate. And no work arounds to be found ?
It’s for scanning a tag in a dog / cat, so qr code is not an option :slight_smile:

Anyone out there found a way to get this working .

Basically I have 90% of the app working as we want. Just some finetuning.
But the NFC (idea which was added in the end now we see what we can do with the app) will be a game changer.
So any help here would be welcome

Best idea I have is to install a different keyboard app that is capable of scanning NFC tags.

1 Like

That’s not a bad idea.

Something like this?

2 Likes

So each user would have to install this on their phones?
(Is there a way we push that install )

And how could I then talk to that app ?
Is there maybe somewhere some more explaination on that ?
But thanks for the tip already

yes

Put something in your app telling the user to replace their keyboard with a different one if they want to be able to scan nfc tags. You could created a vetted list of approved apps that you recommend to make it easier on the user. The user is going to need to decide if they want to install a third party keyboard app or not. It’s a keyboard used by their entire device, so it has to be their choice.

Use a text entry component to receive the tag info. Let the keyboard do the scanning and it would fill the text entry as if the user typed it.

Nothing I’ve personally done. Seems pretty self explanatory though. Scanning a tag would take the info from the tag and write it out as if someone typed it by hand.

I tried to build something using the Custom AI component, but I’m pretty sure that the iframe nature of the AI component blocks access to the Web NFC API, so there is no in-app workaround unless Glide builds a native component for this that doesn’t live inside an iframe. Would be easy to build something on its own independent website, but not something that lives within Glide and seemlessly interacts with your data. So at this point, either Glide builds a native tag reader component or functionality, or you go with the third party keyboard idea.

2 Likes

Thanks Jeff for clear explaination. I’ll discuss with the users but at least we have a way to approach it. I hope Glide will one day make this possible.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.