Search results for

“nfc”

1,192 results found

Post

Replies

Boosts

Views

Activity

Core NFC is not detecting TAG
I have been trying to read a NFC tag with NFCTagReaderSession because i need to get the uid of the tag. I already configured the formats on the entitlements file and the aids of the possible tags (of NXP), the reader session starts but the tagReaderSession didDetect is never been triggered. I am using iso 7816. It works if i use NFCNDEFReaderSession but it allows me to read just the info in the tag, like text, uris and others not the uid. I really don't know what is happening :( Configured aids: 1- A0000003964D66344D0002 2- D2760000850100 3- D2760000850101
5
0
2k
Jun ’20
Ionic NFC Support is NOT available on IOS
Hello, I have a big problem with the NFC (I use Ionic & Capacitor), indeed despite having uninstalled and reinstalled it still gives me the same error when I compile it on an IOS emulator: [CoreNFC] 00000002 822651e0 -[NFCHardwareManager areFeaturesSupported:outError:]:154 XPC Error: Error Domain=NSCocoaErrorDomain Code=4099 The connection to service on pid 0 named com.apple.nfcd.service.corenfc was invalidated from this process. UserInfo={NSDebugDescription=The connection to service on pid 0 named com.apple.nfcd.service.corenfc was invalidated from this process. I don't understand this error, I correctly add the right line on Info.plist to say that I am using NFC. I use the phonegap plugin made for ionic 5. **Ionic v5.33.1 Angular v12.1.0 Capacitor v1.2.0**
1
0
3.6k
Jun ’21
NFC reader is not working in iOS 26
I developed an app that uses the Core NFC framework to read tags. The feature works correctly on iOS 18 and earlier versions, but after upgrading to iOS 26, it stopped working. Details: Entitlement Near Field Communication Tag Reader Session Formats D2760000850101 D2760000850101 Info.Plist com.apple.developer.nfc.readersession.iso7816.select-identifiers D2760000850101 com.apple.developer.nfc.readersession.felica.systemcodes 12FC Privacy - NFC Scan Usage Description Signing and Capabilities: Near Field Communicating Tag Reading [Eanbled] My Sample Code Is: class NFCManager: NSObject, NFCTagReaderSessionDelegate { private var nfcSession: NFCTagReaderSession? let isConnectionNeeded = false func startNFCSession() { guard NFCTagReaderSession.readingAvailable else { // NFC is not available on this device. return } nfcSession = NFCTagReaderSession(pollingOption: [.iso14443, .iso15693, .iso18092], delegate: self) nfcSession?.begin() } func stopNFCSession() { nfcSession?.invalidate() } // MA
1
0
556
Sep ’25
nfc content/information in workout devices
Hi, does anyone know which content/information does the nfc chip has in workout devices?We train with egym workout devices, which have no Apple Gymkit possibilities at the moment. (Polar and fitbit are partners of egym).Which person is responsible for upgrade workout devices for apple gymkit? Perhaps, we can get an email address?If there is no possiblity, does anyone has managed it to get egym cloud information into apple watch activities automatically?ThanksMichael
1
0
760
Nov ’19
Cant turn off NFC (PKPassLibrary.RequestAutomaticPassPresentationSuppression)
I have an app where I want to scan an aztec-code into a reader (that also reads NFC) which will trigger apple pay. I need to supress apple pay to use my app. This is done by applying to apple and get an entitlement which i have applied to my profile. Now all I have to do is to add the following code: PKPassLibrary.RequestAutomaticPassPresentationSuppression((PKAutomaticPassPresentationSuppressionResult r) => { }); And add the entitlement to the Entitlement.plist. This works for a clean app with nothing in it, but do not work for my app. Any suggestions as to what can be the problem here?
1
0
566
Jun ’21
Reply to Emulating NFC Tag using iPhone Device
who can tell me, how this solution to do with NFC emulation? like this: SKIDATA and Allianz Arena launch Germany’s first contactless NFC stadium access with iPhone and Apple Watch https://www.skidata.com/en/skidata-and-allianz-arena-launch-genrmanys-first-contactless-nfc-stadium-access-with-iphone-and-apple-watch/ NFC - Mobile Phone as Ticket https://www.skidata.com/en-us/products-services/products-for-arenas-leisure/tickets-ticketing/e-ticketing/nfc/
Topic: App & System Services SubTopic: General Tags:
Nov ’21
Reply to NFC SDK API
It's my understanding, and I'd really love someone familiar with the specifics to confirm or deny this, that the NFC hardware in iPhones is a passive technology, and won't be compatable with things like NFC tags. This would make an NFC API moot.
Jun ’16
Reply to How to Create an NFC-Enabled Wallet Pass with pass.json Including NFC Field?
@Engineer Hello, I am working on creating an NFC-enabled Apple Wallet pass, but I am having trouble getting the NFC functionality to activate. I understand that NFC Wallet passes need to be tested on a reader that supports the Apple VAS (Value Added Services) protocol, but before that, I need to ensure that NFC is properly enabled in my pass. Above pass.json file i am currently use in my question. Could you provide a working example of a pass.json file with NFC fully enabled for Apple Wallet? This would help me ensure that my setup is correct. Thank you for your assistance!
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’24
Core NFC is not detecting TAG
I have been trying to read a NFC tag with NFCTagReaderSession because i need to get the uid of the tag. I already configured the formats on the entitlements file and the aids of the possible tags (of NXP), the reader session starts but the tagReaderSession didDetect is never been triggered. I am using iso 7816. It works if i use NFCNDEFReaderSession but it allows me to read just the info in the tag, like text, uris and others not the uid. I really don't know what is happening :( Configured aids: 1- A0000003964D66344D0002 2- D2760000850100 3- D2760000850101
Replies
5
Boosts
0
Views
2k
Activity
Jun ’20
Ionic NFC Support is NOT available on IOS
Hello, I have a big problem with the NFC (I use Ionic & Capacitor), indeed despite having uninstalled and reinstalled it still gives me the same error when I compile it on an IOS emulator: [CoreNFC] 00000002 822651e0 -[NFCHardwareManager areFeaturesSupported:outError:]:154 XPC Error: Error Domain=NSCocoaErrorDomain Code=4099 The connection to service on pid 0 named com.apple.nfcd.service.corenfc was invalidated from this process. UserInfo={NSDebugDescription=The connection to service on pid 0 named com.apple.nfcd.service.corenfc was invalidated from this process. I don't understand this error, I correctly add the right line on Info.plist to say that I am using NFC. I use the phonegap plugin made for ionic 5. **Ionic v5.33.1 Angular v12.1.0 Capacitor v1.2.0**
Replies
1
Boosts
0
Views
3.6k
Activity
Jun ’21
NFC reader is not working in iOS 26
I developed an app that uses the Core NFC framework to read tags. The feature works correctly on iOS 18 and earlier versions, but after upgrading to iOS 26, it stopped working. Details: Entitlement Near Field Communication Tag Reader Session Formats D2760000850101 D2760000850101 Info.Plist com.apple.developer.nfc.readersession.iso7816.select-identifiers D2760000850101 com.apple.developer.nfc.readersession.felica.systemcodes 12FC Privacy - NFC Scan Usage Description Signing and Capabilities: Near Field Communicating Tag Reading [Eanbled] My Sample Code Is: class NFCManager: NSObject, NFCTagReaderSessionDelegate { private var nfcSession: NFCTagReaderSession? let isConnectionNeeded = false func startNFCSession() { guard NFCTagReaderSession.readingAvailable else { // NFC is not available on this device. return } nfcSession = NFCTagReaderSession(pollingOption: [.iso14443, .iso15693, .iso18092], delegate: self) nfcSession?.begin() } func stopNFCSession() { nfcSession?.invalidate() } // MA
Replies
1
Boosts
0
Views
556
Activity
Sep ’25
nfc content/information in workout devices
Hi, does anyone know which content/information does the nfc chip has in workout devices?We train with egym workout devices, which have no Apple Gymkit possibilities at the moment. (Polar and fitbit are partners of egym).Which person is responsible for upgrade workout devices for apple gymkit? Perhaps, we can get an email address?If there is no possiblity, does anyone has managed it to get egym cloud information into apple watch activities automatically?ThanksMichael
Replies
1
Boosts
0
Views
760
Activity
Nov ’19
NFC tag iOS 14 beta 2
The issue that occurred with iOS 13 beta 4 last year is repeating with iOS 14 beta 2. NFC tags can be read but the shortcut doesn’t run. However sometimes it doesn’t decide to work as it used to.
Replies
10
Boosts
0
Views
3.2k
Activity
Jul ’20
NFC-enabled pass to use with Apple Wallet.
hi im tryng for some time to get the certification for NFC-enabled pass to use with Apple Wallet. but not response from apple team they just send a email with some question we reply but them we have not response.. can some one help me?
Replies
0
Boosts
0
Views
780
Activity
Mar ’24
Cant turn off NFC (PKPassLibrary.RequestAutomaticPassPresentationSuppression)
I have an app where I want to scan an aztec-code into a reader (that also reads NFC) which will trigger apple pay. I need to supress apple pay to use my app. This is done by applying to apple and get an entitlement which i have applied to my profile. Now all I have to do is to add the following code: PKPassLibrary.RequestAutomaticPassPresentationSuppression((PKAutomaticPassPresentationSuppressionResult r) => { }); And add the entitlement to the Entitlement.plist. This works for a clean app with nothing in it, but do not work for my app. Any suggestions as to what can be the problem here?
Replies
1
Boosts
0
Views
566
Activity
Jun ’21
Reply to iPad app with NFC and camera - No compatible hardware
I have a required item for NFC in the Info.plist, was copy pasted from a flutter plugin for NFC github.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Emulating NFC Tag using iPhone Device
who can tell me, how this solution to do with NFC emulation? like this: SKIDATA and Allianz Arena launch Germany’s first contactless NFC stadium access with iPhone and Apple Watch https://www.skidata.com/en/skidata-and-allianz-arena-launch-genrmanys-first-contactless-nfc-stadium-access-with-iphone-and-apple-watch/ NFC - Mobile Phone as Ticket https://www.skidata.com/en-us/products-services/products-for-arenas-leisure/tickets-ticketing/e-ticketing/nfc/
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to NFC SDK API
It's my understanding, and I'd really love someone familiar with the specifics to confirm or deny this, that the NFC hardware in iPhones is a passive technology, and won't be compatable with things like NFC tags. This would make an NFC API moot.
Replies
Boosts
Views
Activity
Jun ’16
Reply to NFFieldNotification not loaded or does not exist
The same happened to me when I tried to read NFC tags from Android NFC Tools app.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Mar ’19
Reply to How to Create an NFC-Enabled Wallet Pass with pass.json Including NFC Field?
@Engineer Hello, I am working on creating an NFC-enabled Apple Wallet pass, but I am having trouble getting the NFC functionality to activate. I understand that NFC Wallet passes need to be tested on a reader that supports the Apple VAS (Value Added Services) protocol, but before that, I need to ensure that NFC is properly enabled in my pass. Above pass.json file i am currently use in my question. Could you provide a working example of a pass.json file with NFC fully enabled for Apple Wallet? This would help me ensure that my setup is correct. Thank you for your assistance!
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’24
NFC tag with mentioned technologies NfcA, MifareClassic, NdefFormatable
I am implementing iOS APP with to read NFC tag with these mentioned technologies NfcA, MifareClassic, NdefFormatable so is there a way that I can access these types of tags. Can I access MifareClassic tags with iOS using coreNFC ?
Replies
0
Boosts
0
Views
584
Activity
Jul ’23
NFC IC for app clips codes tags
Hi, I'm inlay converter and I need know the brand and model of NFC IC for app clips codes tags. Could you connect me with responsible officer or send me more tech info? I need prepare samples for tests in advance. Regards.
Replies
0
Boosts
0
Views
245
Activity
Jul ’20
Has anyone managed to get Nintendo's amiibo working with iOS 11's Core NFC?
I have attempted to read NDEF tags from Nintendo's amiibo with a minimal NFC reader built using the new Core NFC apis. But no luck. The amiibo is not detected and Core NFC seems to be completeley oblivious to the amiibo. Any ideas?Thanks.
Replies
2
Boosts
0
Views
7k
Activity
Jul ’17