Search results for

“nfc”

1,194 results found

Post

Replies

Boosts

Views

Activity

Reply to App Clips scanned by Android Users
App Clip codes are just URLs (If using NFC or QR codes). So it would just go to that URL in a browser. The special circular App Clip code has a standard NFC chip in it and the outer circles are like a custom QR code pattern. I don’t think Android apps could read that. But they should be able to use the NFC tag and open the URL.
Topic: App & System Services SubTopic: General Tags:
Jul ’20
HCE Permission and Background Access for Corporate NFC Integration
Hello, We are currently developing an application that uses the Host-based Card Emulation (HCE) entitlement to enable corporate access functionality. With this entitlement, we have successfully established HCE communication and can interact with our access control systems to unlock doors. Our question is related to improving the user experience: We would like this access functionality to work without requiring the app to be in the foreground, as this adds friction for users during entry. Specifically, we would like to know: Is it possible for our app to coexist with Apple Wallet as the default contactless app, so that: Our app handles NFC interactions for corporate access (e.g., opening doors). Apple Wallet remains the default for payments. If that coexistence is not possible, and our app is set as the default contactless app, Will the system still need to launch our app into the foreground to complete a transaction (e.g., to emulate the NFC card)? Or is there a way to trigger HCE responses
0
0
88
Sep ’25
NFC HCE CardSession.isSupported crash
I am getting report of a crash occurring, while doing a NFC HCE CardSession. The swift code is mostly the same as the example from the CardSession docs: @objc func deviceSupportsNFC (_ call: CAPPluginCall) { call.keepAlive = true let supportsNFCCallbackId = call.callbackId! Task() { guard NFCReaderSession.readingAvailable, CardSession.isSupported, // <-- line 86 await CardSession.isEligible else { print(TAG + HCE not allowed/available) var support = JSObject() support[supported] = false; let callback = bridge?.savedCall(withID: supportsNFCCallbackId) call.resolve(); callback?.resolve(support); return; } print(TAG + HCE allowed) var support = JSObject() support[supported] = true; let callback = bridge?.savedCall(withID: supportsNFCCallbackId) call.resolve(); callback?.resolve(support); } } Calling it from my plugin, to verify if (HCE) NFC is supported: if(await deviceInfoService.isIos()) { if(iosSupportEnabled === false) { console.log(NfcHceService:iOS but disabled); return; } this.requi
1
0
209
May ’25
IPhone and NFC
Hi, We have a device (screen) that you can access/wake up by swiping any RFID-card close to it. Would it be possible have the iPhone act as the RFID-card instead in this scenario? I'm testing on my IPhone 7 but the only way I can make it work is by using Apple Pay and adding a card to my wallet. I found this https://developer.apple.com/documentation/corenfc/adding_support_for_background_tag_reading which is supported on iPhone XS and newer phone. Would that solve my issue or do I need to create an app which acts like a RFID-card? Thank you, and I hope you can help me shed some light on this :) /Henrik
0
0
830
Aug ’21
iOS 15 Beta 6 - NFC Read/Write borked?
Hi there— Has anyone else been having issues with CoreNFC basic Read/Write functionality? My test device (iPhone 12 Pro) has not been able to detect or interact with any NFC tags since switching from the most recent iOS 14 build. I was hoping B6 would fix this but no luck… Feedback ID- FB9404881
0
0
550
Aug ’21
Root issue is missing entitlement in NFC App
The root issues is a missing entitlement error. I've jumped through countless hoops of checking/rechecking .entitlement file/plist file, creating new credentials, creating new projects, creating new provisioning profiles with no luck, manual signing, automatic signing. Any suggestions appreciated. Looking at the Provisioning Profile Info shows NFC Tag capabilities is included and NFC Entitlements are included. I'm at a loss... I am including the following: Pertinent output from console Current Info.Plist Current .entitlement file Here are the pertinent sectsis the Console Log for reference: ... NFCConnectionManager[0x074d6e40].tagReaderSessionDidBecomeActive(:): NFCTagReaderSessionDelegate: Session did become active NFCConnectionManager[0x074d6e40].tagReaderSession(:didDetect:): NFCTagReaderSessionDelegate: Session didDetectTags – 1 tags NFCConnectionManager[0x074d6e40].connected(session:tag:): Manager.connected(session:tag:) - tag: 7 bytes NFCConnection.Type.connection(): NFCConnection.conn
3
0
250
Jul ’25
Unable to connect to NFC Tag.
I am trying to read dutch driving license using NFC. Following is my code snippet guard NFCNDEFReaderSession.readingAvailable else { let alertController = UIAlertController( title: Scanning Not Supported, message: This device doesn't support tag scanning., preferredStyle: .alert ) alertController.addAction(UIAlertAction(title: OK, style: .default, handler: nil)) self.present(alertController, animated: true, completion: nil) return } guard NFCTagReaderSession.readingAvailable else { let alertController = UIAlertController( title: Scanning Not Supported, message: This device doesn't support tag scanning., preferredStyle: .alert ) alertController.addAction(UIAlertAction(title: OK, style: .default, handler: nil)) self.present(alertController, animated: true, completion: nil) return } if #available(iOS 16.0, *) { session = NFCTagReaderSession(pollingOption: [.iso14443, .iso15693, .iso18092, .pace], delegate: self, queue: nil) } else { // Fallback on earlier versions session = NFCTagReaderSession(pollingOp
0
0
1.2k
Jan ’23
Reply to App Clips scanned by Android Users
App Clip codes are just URLs (If using NFC or QR codes). So it would just go to that URL in a browser. The special circular App Clip code has a standard NFC chip in it and the outer circles are like a custom QR code pattern. I don’t think Android apps could read that. But they should be able to use the NFC tag and open the URL.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’20
HCE Permission and Background Access for Corporate NFC Integration
Hello, We are currently developing an application that uses the Host-based Card Emulation (HCE) entitlement to enable corporate access functionality. With this entitlement, we have successfully established HCE communication and can interact with our access control systems to unlock doors. Our question is related to improving the user experience: We would like this access functionality to work without requiring the app to be in the foreground, as this adds friction for users during entry. Specifically, we would like to know: Is it possible for our app to coexist with Apple Wallet as the default contactless app, so that: Our app handles NFC interactions for corporate access (e.g., opening doors). Apple Wallet remains the default for payments. If that coexistence is not possible, and our app is set as the default contactless app, Will the system still need to launch our app into the foreground to complete a transaction (e.g., to emulate the NFC card)? Or is there a way to trigger HCE responses
Replies
0
Boosts
0
Views
88
Activity
Sep ’25
Are ISO15693 NFC tags supposed to be working with iOS 11 beta 2 ?
I don't get any response from my iOS11 beta 2 iphone using ISO15693 NFC tags although my programm doesn't have any errors.
Replies
1
Boosts
0
Views
809
Activity
Jul ’17
NFC HCE CardSession.isSupported crash
I am getting report of a crash occurring, while doing a NFC HCE CardSession. The swift code is mostly the same as the example from the CardSession docs: @objc func deviceSupportsNFC (_ call: CAPPluginCall) { call.keepAlive = true let supportsNFCCallbackId = call.callbackId! Task() { guard NFCReaderSession.readingAvailable, CardSession.isSupported, // <-- line 86 await CardSession.isEligible else { print(TAG + HCE not allowed/available) var support = JSObject() support[supported] = false; let callback = bridge?.savedCall(withID: supportsNFCCallbackId) call.resolve(); callback?.resolve(support); return; } print(TAG + HCE allowed) var support = JSObject() support[supported] = true; let callback = bridge?.savedCall(withID: supportsNFCCallbackId) call.resolve(); callback?.resolve(support); } } Calling it from my plugin, to verify if (HCE) NFC is supported: if(await deviceInfoService.isIos()) { if(iosSupportEnabled === false) { console.log(NfcHceService:iOS but disabled); return; } this.requi
Replies
1
Boosts
0
Views
209
Activity
May ’25
IPhone and NFC
Hi, We have a device (screen) that you can access/wake up by swiping any RFID-card close to it. Would it be possible have the iPhone act as the RFID-card instead in this scenario? I'm testing on my IPhone 7 but the only way I can make it work is by using Apple Pay and adding a card to my wallet. I found this https://developer.apple.com/documentation/corenfc/adding_support_for_background_tag_reading which is supported on iPhone XS and newer phone. Would that solve my issue or do I need to create an app which acts like a RFID-card? Thank you, and I hope you can help me shed some light on this :) /Henrik
Replies
0
Boosts
0
Views
830
Activity
Aug ’21
Reply to NFC tag iOS 14 beta 2
Same to me i used to use shortcuts eith nfc every day But now with ios 14 it seems to read an nfc tag once and then it seems to stop to reading the same tag
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’20
Reply to Is there a way to disable NFC on iPhones?
But is it somehow possible that the statement I evaluate returns true i.e it cannot find NFC even though an NFC chip exists on the device? Is my check comprehensive or should I be doing any additional checks for this
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Is there NFC SDK for iOS?
Did you ever find a solution on NFC tags? I have a similar need but as far as I can figure there is no way to read an NFC tag from an iPhone? Is there another low cost tag solution?
Replies
Boosts
Views
Activity
Jan ’17
Reply to Using Wallet.app to open doors with NFC reader
Can you explain how you accomplished this... So I used a credit card which is NFC enabled to readout the NFC information, added this number to the database and can now open doors using my credit card
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Nov ’22
iOS 15 Beta 6 - NFC Read/Write borked?
Hi there— Has anyone else been having issues with CoreNFC basic Read/Write functionality? My test device (iPhone 12 Pro) has not been able to detect or interact with any NFC tags since switching from the most recent iOS 14 build. I was hoping B6 would fix this but no luck… Feedback ID- FB9404881
Replies
0
Boosts
0
Views
550
Activity
Aug ’21
Root issue is missing entitlement in NFC App
The root issues is a missing entitlement error. I've jumped through countless hoops of checking/rechecking .entitlement file/plist file, creating new credentials, creating new projects, creating new provisioning profiles with no luck, manual signing, automatic signing. Any suggestions appreciated. Looking at the Provisioning Profile Info shows NFC Tag capabilities is included and NFC Entitlements are included. I'm at a loss... I am including the following: Pertinent output from console Current Info.Plist Current .entitlement file Here are the pertinent sectsis the Console Log for reference: ... NFCConnectionManager[0x074d6e40].tagReaderSessionDidBecomeActive(:): NFCTagReaderSessionDelegate: Session did become active NFCConnectionManager[0x074d6e40].tagReaderSession(:didDetect:): NFCTagReaderSessionDelegate: Session didDetectTags – 1 tags NFCConnectionManager[0x074d6e40].connected(session:tag:): Manager.connected(session:tag:) - tag: 7 bytes NFCConnection.Type.connection(): NFCConnection.conn
Replies
3
Boosts
0
Views
250
Activity
Jul ’25
Unable to connect to NFC Tag.
I am trying to read dutch driving license using NFC. Following is my code snippet guard NFCNDEFReaderSession.readingAvailable else { let alertController = UIAlertController( title: Scanning Not Supported, message: This device doesn't support tag scanning., preferredStyle: .alert ) alertController.addAction(UIAlertAction(title: OK, style: .default, handler: nil)) self.present(alertController, animated: true, completion: nil) return } guard NFCTagReaderSession.readingAvailable else { let alertController = UIAlertController( title: Scanning Not Supported, message: This device doesn't support tag scanning., preferredStyle: .alert ) alertController.addAction(UIAlertAction(title: OK, style: .default, handler: nil)) self.present(alertController, animated: true, completion: nil) return } if #available(iOS 16.0, *) { session = NFCTagReaderSession(pollingOption: [.iso14443, .iso15693, .iso18092, .pace], delegate: self, queue: nil) } else { // Fallback on earlier versions session = NFCTagReaderSession(pollingOp
Replies
0
Boosts
0
Views
1.2k
Activity
Jan ’23
Reply to Can I use an NFC on my iPhone to unlock a door?
When you refer to NFC door what do you mean with that? You'd need an Apple Access certified NFC reader at the door - here is a guide on the topic: https://www.getkisi.com/guides/apple-wallet-access
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Passbook NFC information
Can I add our loyality card using nfc in wallet? US only? Royalty card that use Do only terminal corresponding to the Apple pay? We want to support nfc with our loyality card in Japan.
Replies
Boosts
Views
Activity
Oct ’15
Reply to App clip via NFS
NFC
Replies
Boosts
Views
Activity
Jun ’20