I'm developing a web app where I want to retrieve users by their RFID tags.
I have a form where I input the RFID tag ID in a text field.
It is already working on desktop using an usb RFID reader that acts as an HID device.
But is it possible to do the same on an Android phone with built-in NFC/RFID reader?
I can read the tag's content using a dedicated app on my phone, but is there an app that reads RFID tags and behaves like a keyboard? Or maybe a dedicated Android keyboard that offers this functionality?
Any advice will be appreciated. Thank you!
EDIT
For anyone wondering, I ended up creating a new Android IME from this source and adding a custom button. When pressed, a new intent is launched in which I listen for any RFID/NFC tag event. Then I read and value and return it to the IME using the clipboard. Probably not the best solution but it works as expected.