Search results for

nfc

1,143 results found

Post

Replies

Boosts

Views

Activity

Reply to Swift iOS iPadOS app for Smartcard Token PIV using CryptoTokenKit
Does Apple support lighting port readers? Depends on what you mean by “support”. The iOS security infrastructure is able to work with smart card readers connected via Lightning, USB, NFC, and others. The exact mechanics of how that works, and who supports it if it fails!, depends on the connection type. What is the need of crypto token kit extension if we are able to list the certificates from key chain just by adding com.apple.token in the entitlements file. The built-in infrastructure can work the SE and with PIV hardware token. If your hardware token needs custom support, or you want to create a virtual token that’s not backed by directly connected hardware, you create a CTK appex. For example, my Yubikey 5Ci has NFC support. That only works if Yubico’s app is installed, because the app contains the CTK appex that bridges to NFC [1]. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] Via a very convoluted path,
Topic: Privacy & Security SubTopic: General Tags:
Jun ’23
NFC Error Distribute App
Invalid entitlement for core nfc framework. The sdk version '16.4' and min OS version '11.0' are not compatible for the entitlement 'com.apple.developer.nfc.readersession.formats' because 'NDEF is missing in the entitlement'. (ID: 5825b68c-1bc8-450e-acfa-37f629843796)
0
0
1.1k
Jun ’23
Nfc Reader
Hello everyone, this is my first post. I have a question, I understand that it is possible to generate nfc passes and add them to the apple wallet after obtaining the Apple certificate. Apple asks which physical reader is compatible for reading the pass, but is it possible to use an Android or iOS mobile application to read the pass ? Have a nice day. Kind regards,
1
0
812
May ’23
Is CarKey API available also for after market accessory vendors?
We are a startup company focused on aftermarket automobile upgrades. We are working on an iPhone accessory that works as a key/fob for older cars that don't support this. We want to make a receiver kit that will be installed on aftermarket/vintage/older cars. We want this device to work using Apple CarKey/Wallet Api on UWB or NFC. We understand we need an MFI enrollment for that, but we want to make sure even if we are not auto-makers, we can apply for it.
0
0
1.2k
May ’23
Detect if NFC is enabled or not
Hi, I am using the below code to detect if NFC is enabled or not. (BOOL)isNFCAvailable { if ([NFCNDEFReaderSession readingAvailable]) { return YES; } return NO; } I have also added the permission is info.plist file NFCReaderUsageDescription Detecting if NFC is enabled or not I am testing on iphone XS with ios 15.6.1 and on iphone 11 with ios 13.2.2. In both the cases, the API is returning false. Can you please let me know if I am missing something.
0
0
923
May ’23
Reply to NFC Tags won't read after iOS 15.4 update
I have a field RFID Detector, decided to try it out on my phone and my friend’s phone. I put the detector to my phone, and it was blinking, so the nfc was trying to find a tag, but the light was very dim. Tried it on my friend’s phone. Light was brighter than ever, meaning a really high field of nfc. Maybe it’s a power issues, and there isn’t enough power going to the nfc chip?
Topic: App & System Services SubTopic: General Tags:
May ’23
Reply to How to test my app NFC in iPhone XR, using personal team ?
That’s not possible. If you’re working with a Personal Team, you should bookmark this page. The rightmost column [1] shows capabilities available to a Personal Team. As you can see, NFC isn’t listed there, which means it isn’t available to you. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] Somewhat confusingly labelled Apple Developer.
Topic: Code Signing SubTopic: Entitlements Tags:
May ’23
Assistance Required - NFC Issue on Apple Devices
Dear Apple Support Team, I am writing to bring to your attention an issue we have encountered with NFC (Near Field Communication) functionality on Apple devices, specifically related to the initiation of new NFC sessions after tapping the 'Cancel' button during a previous session. This issue seems to occur predominantly when the device is in Aeroplane mode. The problem we are facing is that the NFC pop-up fails to initiate when a user tries to start a new NFC session after cancelling a previous one. This limitation has caused inconvenience for both our team and our users, as we rely heavily on NFC technology for various applications. We kindly request your support and expertise in investigating and resolving this issue. We understand the complexities involved in addressing such matters and greatly appreciate your dedication to improving the functionality of Apple products. By addressing this problem, you would contribute to enhancing the reliability and user experi
0
0
562
May ’23
Reply to The right way to extend UIRequiredDeviceCapabilities
If NFC is now essential, you need to create a new app. It would normally be better to make NFC optional, by continuing to provide the old behaviour on devices that don’t have NFC, and not adding it to the required capabilities. What devices don’t have NFC now? With some of these capabilities you can require them by requiring a sufficiently new iOS version which only runs on hardware that has the feature. One example of that was OpenGL ES 2. Apple do allow to to require a newer iOS version that excludes some existing users.
Topic: Code Signing SubTopic: Entitlements Tags:
May ’23
The right way to extend UIRequiredDeviceCapabilities
I've added NFC support for my app. So, my UIRequiredDeviceCapabilities were extended from armv7 to armv7 nfc. This means I've prevented this application from running on devices supported by previous versions. Now I've received a message from Apple: ITMS-90109: This bundle is invalid - The key UIRequiredDeviceCapabilities in the Info.plist may not contain values that would prevent this application from running on devices that were supported by previous versions. What is the right way to add new functions?
1
0
871
May ’23