Search results for

“nfc”

1,194 results found

Post

Replies

Boosts

Views

Activity

NFC Session 'DidInvalidate()' gets called with error code 'System Resource Unavailable' error code
I'm developing an NFC based app where I've been facing issues such that 'Tag Connection Lost' or 'Tag no response' errors are returned by the 'SendMiFareCommand()' function very frequently. This is observed more frequently on iPhone 12 and above when 5G network signal is weak. Anyway, that's a different issue which I'm following up separately. Because of those frequent errors, I require to Invalidate() NFC session and restart a new session because those errors are non-recoverable. For this purpose, I invoke 'InvalidateSession()', check for session.IsReady flag to be 'false' and then start a new session for the retry. Right after calling 'BeginSession()' at this moment, 'DidInvalidate()' gets hit with an NSError code 'System Resource Unavailable'. What could be the cause behind? I'm checking if previous session was properly invalidated.
0
0
860
Jan ’23
Reading NFC Tags from App Clip Invocations
In my full application I have a universal link configured on an NFC tag that allows me to launch my application via NFC background tag reading and process additional NDEF records held on the tag via the NFCNDEFMessage provided to onContinueUserActivity(). I can use this same NFC tag to launch my App Clip via the same URL when the full app is not installed. However, unlike the full app the App Clip only receives a single NDEF record with .typeNameFormat = .empty. Is this a limitation of App Clip invocations? I have also implemented full NFC reader functionality within the App Clip which does retrieve all the records from the tag, but of course requires the user to tap the same tag twice to read its full contents. Ideally I would like to avoid requiring users to tap the tag twice to read.
0
0
668
Jan ’23
Does Wallet support ISO14443-3a?
Hi, I am trying to create NFC passes in Wallet. The ones I made seems to follow ISO14443-4 but the reader that I want to use only supports ISO14443-3a. It is possible for the passes to be compatible with it? If not, where can I find a list of readers that are compatible with Wallet passes?
0
0
647
Jan ’23
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
How can i read NFC tag Data?
i want to fetch data from NFC tag and open App Clip i preferred link for NFC data reader but still my issue was not solve output like: NFC Ready: false Error Domain=NFCError Code=2 Missing required entitlement UserInfo={NSLocalizedDescription=Missing required entitlement} 2023-01-04 18:46:48.525435+0530 TapnClip[11544:7498529] [Default] Error requesting calls from host: Error Domain=NSCocoaErrorDomain Code=4097 connection to service named com.apple.callkit.callcontrollerhost UserInfo={NSDebugDescription=connection to service named com.apple.callkit.callcontrollerhost} Message from debugger: Terminated due to signal 9 can anyone help me to solve issue Thank you for support!
0
0
770
Jan ’23
Reading Turkish eID problem in release version
I have a React-Native application and I implemented a 3rd party eID NFC Reader SDK. This 3rd SDK is using NFCPassportReader library and CoreNFC package also. I'm trying to read Turkish Citizenship eID with this module. My problem this module is working properly in debug mode but It's crushing in release version. I've added a crush log related to this issue and I've added tagReaderSession implementation code. I've added my com.apple.developer.nfc.readersession.iso7816.select-identifiers configuration code also. Does anybody have an idea about that problem? Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Codes: 0x0000000000000001, 0x0000000000000000 VM Region Info: 0 is not in any region. Bytes before following region: 4340301824 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START ---> _TEXT 102b3c000-10603c000 [ 53.0M] r-x/r-x SM=COW ...ePieMobileDev Termination Reason: SIGNAL 11 Segmentation fault: 11
0
0
760
Dec ’22
Reply to Unlocking Level Lock with apple Watch or Phone
I also bought the Touch earlier this year (February, so ~10 months ago), and was also hopeful that holding up phone to unlock would eventually be a firmware/software update enabled feature. From my internet searching, there's no indication Level intends to do this with the Touch. Instead they are pushing the Level +, which is basically the same as the Touch except with Apple HomeKey. Some folks online claim the + has a stronger radio than the Touch. I have been very disappointed with the unreliable performance of the touch to unlock feature in the Touch. It only works for me if I pull out my phone and open the Level app, and watch as the text indicator in the app goes from touch to unlock not ready to touch to unlock ready. After that I can touch the lock and it will indeed unlock, but of course having to pull out your phone completely eliminates the the value of touch to unlock. Some reddit folks have said they use NFC stickers and homekit automations to enable NFC to unlock behavior with t
Topic: App & System Services SubTopic: Hardware Tags:
Dec ’22
Local Experience App Clip Card: Photo not displayed + disappears on iOS 16 device
I have created a Local Experience with an App Clip Card on on two developer devices. While on the iPhone X with iOS 15.7 the chosen photo appears on the App Clip Card, the photo does not appear on the iPhone 12 Pro with iOS 16.2 (it did not with iOS 16.0 before either). Apart from that all content is displayed. What is even more strange: the photo is removed after a while from the App Clip card settings. I tried restarting, different photos to no avail. Any idea? Side note: I have the impression that NFC tag detection is worse with iOS 16.2 compared to iOS 16.0
6
0
1.9k
Dec ’22
iPhone 13 will not read NFC Tag
I have been testing out NFC Tags and I can get some functions to work without having to use the shortcuts app as most NFC's should so they can be used by relatively all users. I cannot get my iPhone 13 to read an NFC Tag with Wi-Fi information, I know the info is written as I can read it from the apps I am writing to them with but it will not read the information. Does Apple not support this? if so why not? You can do it from a QR code but not an NFC?
0
0
1.1k
Dec ’22
NFC Session 'DidInvalidate()' gets called with error code 'System Resource Unavailable' error code
I'm developing an NFC based app where I've been facing issues such that 'Tag Connection Lost' or 'Tag no response' errors are returned by the 'SendMiFareCommand()' function very frequently. This is observed more frequently on iPhone 12 and above when 5G network signal is weak. Anyway, that's a different issue which I'm following up separately. Because of those frequent errors, I require to Invalidate() NFC session and restart a new session because those errors are non-recoverable. For this purpose, I invoke 'InvalidateSession()', check for session.IsReady flag to be 'false' and then start a new session for the retry. Right after calling 'BeginSession()' at this moment, 'DidInvalidate()' gets hit with an NSError code 'System Resource Unavailable'. What could be the cause behind? I'm checking if previous session was properly invalidated.
Replies
0
Boosts
0
Views
860
Activity
Jan ’23
Reading NFC Tags from App Clip Invocations
In my full application I have a universal link configured on an NFC tag that allows me to launch my application via NFC background tag reading and process additional NDEF records held on the tag via the NFCNDEFMessage provided to onContinueUserActivity(). I can use this same NFC tag to launch my App Clip via the same URL when the full app is not installed. However, unlike the full app the App Clip only receives a single NDEF record with .typeNameFormat = .empty. Is this a limitation of App Clip invocations? I have also implemented full NFC reader functionality within the App Clip which does retrieve all the records from the tag, but of course requires the user to tap the same tag twice to read its full contents. Ideally I would like to avoid requiring users to tap the tag twice to read.
Replies
0
Boosts
0
Views
668
Activity
Jan ’23
How to Get NFC Capabilities
Hello, I have created a digital card on Apple Wallet. How do I give it NFC capabilities without having to apply to Apple? Any workarounds?
Replies
0
Boosts
0
Views
657
Activity
Jan ’23
Reply to Using Wallet.app to open doors with NFC reader
Perhaps it's time the European Commission leaned on Apple on this front, after basically forcing them to use USB-C. This stranglehold on the NFC chip in Apple mobile devices could really be considered market protectionism. And since no tech journalist dares to mumble this, maybe the EC should.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jan ’23
Does Wallet support ISO14443-3a?
Hi, I am trying to create NFC passes in Wallet. The ones I made seems to follow ISO14443-4 but the reader that I want to use only supports ISO14443-3a. It is possible for the passes to be compatible with it? If not, where can I find a list of readers that are compatible with Wallet passes?
Replies
0
Boosts
0
Views
647
Activity
Jan ’23
Reply to Apple Watch NFC Tags
I would love to have access to NFC tag functionality for the Apple Watch. There are so many useful functions this would facilitate.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’23
HCE on the new IOS
Hi I am developing an iOS app where I want the iPhone to act as an NFC tag from where the NFC reader can obtain the users information which is stored on the tag (Like an access card). Does the new iOS support HCE? How can I achieve this?
Replies
4
Boosts
0
Views
2.0k
Activity
Jan ’23
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
How can i read NFC tag Data?
i want to fetch data from NFC tag and open App Clip i preferred link for NFC data reader but still my issue was not solve output like: NFC Ready: false Error Domain=NFCError Code=2 Missing required entitlement UserInfo={NSLocalizedDescription=Missing required entitlement} 2023-01-04 18:46:48.525435+0530 TapnClip[11544:7498529] [Default] Error requesting calls from host: Error Domain=NSCocoaErrorDomain Code=4097 connection to service named com.apple.callkit.callcontrollerhost UserInfo={NSDebugDescription=connection to service named com.apple.callkit.callcontrollerhost} Message from debugger: Terminated due to signal 9 can anyone help me to solve issue Thank you for support!
Replies
0
Boosts
0
Views
770
Activity
Jan ’23
Reading Turkish eID problem in release version
I have a React-Native application and I implemented a 3rd party eID NFC Reader SDK. This 3rd SDK is using NFCPassportReader library and CoreNFC package also. I'm trying to read Turkish Citizenship eID with this module. My problem this module is working properly in debug mode but It's crushing in release version. I've added a crush log related to this issue and I've added tagReaderSession implementation code. I've added my com.apple.developer.nfc.readersession.iso7816.select-identifiers configuration code also. Does anybody have an idea about that problem? Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Codes: 0x0000000000000001, 0x0000000000000000 VM Region Info: 0 is not in any region. Bytes before following region: 4340301824 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START ---> _TEXT 102b3c000-10603c000 [ 53.0M] r-x/r-x SM=COW ...ePieMobileDev Termination Reason: SIGNAL 11 Segmentation fault: 11
Replies
0
Boosts
0
Views
760
Activity
Dec ’22
Reply to NFC Tags won't read after iOS 15.4 update
I found that if I turn off cellular, then I can read NFC devices. Not worth it for a silly device, but probably worth it for your GCM.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’22
Adding non-bank NFC cards to apple wallet
Hi, We are trying to develop a smart way to share business cards through NFC technology and we already implemented it in android using the HCE sdk they offer however I believe in IOS that is not possible, therefore we are looking for a way to add those business cards on the IOS wallet is that possible?
Replies
0
Boosts
0
Views
730
Activity
Dec ’22
Reply to Unlocking Level Lock with apple Watch or Phone
I also bought the Touch earlier this year (February, so ~10 months ago), and was also hopeful that holding up phone to unlock would eventually be a firmware/software update enabled feature. From my internet searching, there's no indication Level intends to do this with the Touch. Instead they are pushing the Level +, which is basically the same as the Touch except with Apple HomeKey. Some folks online claim the + has a stronger radio than the Touch. I have been very disappointed with the unreliable performance of the touch to unlock feature in the Touch. It only works for me if I pull out my phone and open the Level app, and watch as the text indicator in the app goes from touch to unlock not ready to touch to unlock ready. After that I can touch the lock and it will indeed unlock, but of course having to pull out your phone completely eliminates the the value of touch to unlock. Some reddit folks have said they use NFC stickers and homekit automations to enable NFC to unlock behavior with t
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’22
Local Experience App Clip Card: Photo not displayed + disappears on iOS 16 device
I have created a Local Experience with an App Clip Card on on two developer devices. While on the iPhone X with iOS 15.7 the chosen photo appears on the App Clip Card, the photo does not appear on the iPhone 12 Pro with iOS 16.2 (it did not with iOS 16.0 before either). Apart from that all content is displayed. What is even more strange: the photo is removed after a while from the App Clip card settings. I tried restarting, different photos to no avail. Any idea? Side note: I have the impression that NFC tag detection is worse with iOS 16.2 compared to iOS 16.0
Replies
6
Boosts
0
Views
1.9k
Activity
Dec ’22
iPhone 13 will not read NFC Tag
I have been testing out NFC Tags and I can get some functions to work without having to use the shortcuts app as most NFC's should so they can be used by relatively all users. I cannot get my iPhone 13 to read an NFC Tag with Wi-Fi information, I know the info is written as I can read it from the apps I am writing to them with but it will not read the information. Does Apple not support this? if so why not? You can do it from a QR code but not an NFC?
Replies
0
Boosts
0
Views
1.1k
Activity
Dec ’22