I’m looking for information about the location of the NFC reader on different Xiaomi devices. Is there an official website, guide, or resource that shows where the NFC sensor is located for each model? It would be really helpful to have a reference for multiple devices.
I’ve searched through several pages, but I’ve only found one with incomplete information: .html. While this page is helpful, it doesn’t cover all devices, so it's not sufficient.
I’m looking for information about the location of the NFC reader on different Xiaomi devices. Is there an official website, guide, or resource that shows where the NFC sensor is located for each model? It would be really helpful to have a reference for multiple devices.
I’ve searched through several pages, but I’ve only found one with incomplete information: https://sf.pay.xiaomi/views/cmsModelPages/nfcArea.html. While this page is helpful, it doesn’t cover all devices, so it's not sufficient.
Share Improve this question edited Feb 4 at 21:45 Diego Alonso asked Feb 4 at 21:45 Diego AlonsoDiego Alonso 11 bronze badge 3 |1 Answer
Reset to default 0To help solve this issue, I have created a repository containing a simple structured JSON file with NFC reader positions for various Android devices. The data includes manufacturer, model, commercial name, and NFC reader location (e.g., top, center, bottom, or side).
This information can help users and developers find the correct NFC scanning area more easily. You can find it here: Android NFC Reader Zones.
I hope this helps! Feel free to contribute if you have additional data to share.
https://developer.android/reference/android/nfc/NfcAdapter#getNfcAntennaInfo()
this can list the NFC Antenna and their x and y location in mm. Or if you have a physical device a coil of wire attached to an LED will show the location. – Andrew Commented Feb 4 at 23:53NfcAdapter.getNfcAntennaInfo()
functionality. Also, checking the NFC antenna manually on each device is a good idea, but I'm looking for something less manual. Apparently, the manual approach is the best option for now. Thank you both for the suggestions! – Diego Alonso Commented Feb 5 at 13:36