nfc Questions

3

Solved

Is it possible for an Android application to send a previously stored RFID card ID to a NFC reader? The aim would be to use an Android device to enable access to a room instead of a physical RFID c...
Tol asked 28/11, 2012 at 17:2

2

Ok, I have an app. This app will only complete a task when an nfc tag, any tag, is scanned. Only problem, I do not have any nfc tags. And I am trying to eliminate needing a card anyway, So What I n...
Norling asked 24/9, 2012 at 0:44

3

Solved

I have mistakenly overwritten sector 1 block 7 of one of my Mifare classic 1k tags. It was meant for testing and the 16 byte data that I wrote on block 7 is shown below: 0xaa 0xaa 0xaa 0xaa 0xbb...
Hereafter asked 31/1, 2013 at 21:23

5

Tag myTag = (Tag) intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); Log.i("tag ID", myTag.getId().toString()); This gives me an ID like "[B@40521c40" but this ID changes every read. Any help woul...
Counter asked 19/5, 2011 at 14:33

0

I'm working on an Android application that's supposed to send text data from one phone to another via NFC. I've been referring to the official Android NFC documentation: https://developer.android.c...
Turf asked 28/10, 2023 at 16:57

7

Is there any way to disable/enable NFC via ADB shell commands? I found one answer here. What I tried from the above link: # Enable NFC service call nfc 5 # Disable NFC service call nfc 4 but...
Freezer asked 7/10, 2015 at 13:10

0

I am working with NFC smart card. Typically it is 2-8 commands in a row to get some data, perform some actions and get result. . So I call NFC activity from fragment using registerForActivityResult...
Salian asked 14/4, 2023 at 11:20

2

Solved

I have this code (Java) to write nfc tags: private Tag tag; @Override protected void onNewIntent(Intent intent) { if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) { tag = intent....
Mallette asked 10/3, 2023 at 11:37

3

Solved

Hey guys im testing NFC and i have an issue with i think it is formating.. I added a string value in the tag with an app to write. when i scan it with that same store app it shows ok... when i s...
Almita asked 28/12, 2019 at 22:7

2

I read all documentation about CoreNFC, saw all videos about read and write tags from WWDC 2019 but i didn't find no one information about my problem. I need to write tag with some data for open do...
Foreigner asked 28/6, 2019 at 11:49

5

I am able to make my app, the device owner app through NFC as mentioned here. Now I want to update my app over the air, but I couldn't find a method without rooting. Google is providing many optio...
Snigger asked 25/6, 2015 at 5:24

4

Solved

On an Android device equipped with NFC reader hardware, is there any in-built support to use the NFC tag contents to fire off an intent (e.g. starting an app)? I am asking whether the support is th...
Mammillate asked 23/12, 2011 at 11:1

3

Solved

Apple just announced new NFC Core API to public. Here is what they said. Core NFC With Core NFC framework, your apps can now support tag writing, including writing to NDEF formatted tags. The fram...
Nucleotidase asked 4/6, 2019 at 8:26

3

I have an application which starts in Kiosk mode and should read and react on NFCTags. It's using enableReaderMode on the NFCAdapter in onResume to start reading them. Everything works fine if the ...
Askja asked 10/4, 2020 at 14:30

1

In Android 10 I noticed I get a Toast message from the OS stating "No supported application for this NFC tag" or "No supported app for this NFC tag" (depending on the device): The weird thing is...
Nyctophobia asked 26/3, 2020 at 13:54

2

I'm currently facing a problem with implementing a specific feature into an NFC based iOS 13 app. When reading a tag, I'd like to get the unique hardware id and the NDEF message in one session. So ...
Gombach asked 16/10, 2019 at 7:20

1

I am building a flutter where an app transfers user details from one phone to another. Initially I built this using a qr code scanner and generator setup. Now I am trying to pass the data between t...
Owlet asked 25/9, 2019 at 19:59

3

Solved

How can i read and display the NDEF messages from NFC tags? Please help me. Can anyone provide the sample source code to read the Nfc tag?
Girandole asked 26/9, 2011 at 8:15

4

Solved

How does one detect if an iPhone has the ability to use the NFC chip provided by the core NFC framework? I know right now it only works on iPhone 7 and 7 plus but I don't want to hardcode hardware...
Thud asked 28/8, 2017 at 3:27

2

I'm trying to authenticate a Mifare Ultralight C (ISO/IEC 14443-2 and 14443-3 type A compatible) tag. I send the authentication command with the MifareUltralight.transceive() function provided in ...
Wain asked 12/3, 2012 at 15:37

1

Solved

I have created Two App for NFC. 1. NFC Sender 2. NFC Receiver. NFC Sender sends simple text data to NFC Receiver App. But I am in a big problem here. I am unable to read simple text from NFC. The t...
Ferdinandferdinanda asked 6/9, 2021 at 7:23

1

Solved

I am using Flutter nfc_manager just for writing URLs on NFC Tags in android it's working perfectly. But on IOS it's not written anything on a tag or not showing any error also. On their documentati...
Dromedary asked 19/8, 2021 at 16:15

0

I'm using the nfc_manager package to scan my transportation card. I've found similar apps on the playstore that were able to get transaction history, card serial number and other details from the a...
Wist asked 6/8, 2021 at 8:41

2

I need to implement an authentication procedure between a reader an NFC tag but being my knowledge limited in this area I will appreciated some aid in order to understand few concepts. Pardon in a...
Psilocybin asked 15/4, 2019 at 12:13

4

I am trying to upload my app to TestFlight, which using CoreNFC (NDEF). Unfortunately, I got the error message on Testflight Validate part in (SDK version 13 and 13.1). I already tried this: Xcod...
Girardi asked 27/9, 2019 at 9:6

© 2022 - 2024 — McMap. All rights reserved.