Search results for

nfc

1,175 results found

Post

Replies

Boosts

Views

Activity

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
492
Sep ’25
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
561
Jun ’21
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
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
iPad app with NFC and camera - No compatible hardware
I'm working on an app (actually in Test Flight) that has camera and NFC support. So in iPhone is obviously working as expected, but when testers want to try the camera aspect of the app on iPads they can't even download the app it says No compatible hardware in Test Flight. What I need to do in this case, I already have a UI/UX solution when theres no NFC support or it's disabled (Android can detect this) but here I have no clue if I'm missing something. Thanks in advance
1
0
859
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:
Nov ’21
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
749
Nov ’19
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