Search results for

“nfc”

1,194 results found

Post

Replies

Boosts

Views

Activity

CoreNFC - Empty ndefMessage when upgrading to iOS 16
After upgrading to iOS 16, the code below that I have to read the NDEF contents of an NFC Forum Type 2 Tag now returns an empty string. When running the same code on my iOS 15 device, this code works perfectly. When downgrading my iOS 16 device to iOS 15, this code works perfectly again. I can't find any documentation regarding changes made to CoreNFC in iOS 16 that would be affecting this, can anyone shed any light here please? func readerSession(_ session: NFCNDEFReaderSession, didDetect tags: [NFCNDEFTag]) { print(did detect) let str: String = nfcWriteContent if (tags.count > 1) { let retryInterval = DispatchTimeInterval.milliseconds(500) session.alertMessage = too_many_nfc_detected.localized() DispatchQueue.global().asyncAfter(deadline: .now() + retryInterval, execute: { session.restartPolling() }) return } let tag = tags.first! print(reading...) tag.readNDEF(completionHandler: {(ndefMessage: NFCNDEFMessage?, error: Error?) in var res = if (ndefMessage == nil) { // EVERY NFC SCAN ALW
1
0
1.2k
Sep ’22
Disappointed in AirPods Pro
I’ve only had these for like a year now, and the battery life on them was never really that good. And it has only been getting worse with time. Also, you would think that transparency mode could save batteyr-life but really transparency mode seems to make the battery life even worse than with noise cancellation. I would rather just turn off both transparency mode and noise cancellation without the sound being 10x worse. Where the heck are the controls for AirPod settings? Why isn’t there a section in the settings app for AirPod settings? Why isn’t there a Low Power Mode for AirPods? These are all things that either other Bluetooth wireless headphones have, or Apple has implemented on its’ other devices. Does Apple think they can just totally slack on competitive development for AirPods because they usually sound great; if now the best compared to other Bluetooth pod types? Because I will switch to a better brand soon with more features, better battery, better settings app, etc. -like Bose. I have a pair of Bo
1
0
998
Sep ’22
mobile access solutions - NFC Apple Wallet Tenant Employee badge
Why is there no public APIs for developers (PassKit) to implement Apple Wallet NFC for employee badges as announced in WWDC 2021 Keynote? Can a simple Apple platforms developer implement this for the organization they are working on and don't have to go to third-party providers which seem to have this capability? Seems that I need to reach out to the below companies to enable this in the current organization I'm working with: third party providers: https://swiftconnect.io/owners/ https://www.hidglobal.com/solutions/access-control/hid-mobile-access-solutions
1
0
1.8k
Sep ’22
NFC Tag Reading
Hello, I have finally got to the bottom of why some of our correctly NDEF formatted tags are not read by iOS devices. Having tested this on ISO15693 Type 5 NDEF formatted tags (ST-M24LR04E-R & ST-25DV64KC-I). When the bit representing whether the tag supports reading multiple blocks is set to 1b, found in the Capability Container, the tag will not be read with Background Tag Reading or detected by NFCNDEFReaderSession. I am able to use NFCTagReaderSession polling for .iso15693 which correctly detects the tags and then have had to roll my own NDEF parsing to work around this. I'd love to use NFCNDEFReaderSession and the Background Tag Reading though if possible... Is anyone else able to verify this with other tags?
0
0
771
Aug ’22
Reply to Using Wallet.app to open doors with NFC reader
I understand your problem and fully agree to that. However, i have implemented a workaround here, which works flawless since years. I‘ve put a NFC sticker next to my door. I also have added a workflow/shortcut that triggers when the phone is next to the sticker and simply opens the door. Not the same, management gets harder for many devices, but it works.
Topic: App & System Services SubTopic: Hardware Tags:
Aug ’22
App Clips - TestFlight Qrcode Test
Hello, I'm developing an application that makes use of App Clips, but I don't intend to submit it right now, I'd like the test team to test it in TestFlight first. I already have all the settings in the app and the Domain links defined and the Apple-App-Site-Association (AASA) file configured in the domain, and where in TestFlight it says it is valid. I can also create Advanced Experiences, with different extensions of addresses and banners. However, whenever test users try to point to the generated QRcodes, the following message appears: this app clip is not currently available in your country or region sometimes without banner, other times the banner appears. Can't test Qrcode or NFC Tag situations without the application being submitted to the Store for all users? Are there testing limitations with the Clips and TestFlight app? or to test an app clip with TestFlight do you have to use local experiences on devices, or just manually open the app clips in TestFlight?
0
0
710
Aug ’22
Reply to NFC Tags won't read after iOS 15.4 update
The fix for me (iPhone 12, iOS 15.6) was to go into Settings -> General -> AirDrop and change the setting from Contacts Only to Everyone. After that, scanning of NFC tags worked again. Switched the setting back to Contacts Only and tried scanning the NFC tag again and it still worked. I assume this is a bug.
Topic: App & System Services SubTopic: General Tags:
Aug ’22
Reply to NFC Tags won't read after iOS 15.4 update
Same issue here too. I thought it is coming from the new iPhone case I'm using. I called Apple service and after the troubleshoot, they said everything is fine and requested a physical check on the phone (which was not achievable for me). however I noticed it's not working even without the case as well. If you remove the case, won't make any change I was thinking the case has cause permanent damage to my phone's NFC reader. So what's the plan now? are they even reading all this information here???
Topic: App & System Services SubTopic: General Tags:
Aug ’22
NFC Tag emulation inside the application
Hi, I know, there are the same questions on forum posted before, just it looks like they become old and almost of them are left without answers. We need to develop the application, which can use NFC inside and emulate the NFC Tag. Our embedded device contains the NFC reader and sends the NDEF messages with custom dynamic payload and it is expected that the answers will contain also custom payload depending on the request. Simply, we need to implement data exchange using NFC NDEF messages. We examined the Core NFC framework - it allows only using the iPhone as NFC reader. Looks like not suitable for us. Then we checked the Pass.NFC framework and, if we understand all correctly, it allows to create the NFC card/pass in the wallet with fixed payload, also looks not suitable for us. There is the application NFC Tools Pro in the App Store and it allows to emulate the NFC Card inside, there is the demo video how it works. Here is the l
5
0
5.6k
Aug ’22
CoreNFC - Empty ndefMessage when upgrading to iOS 16
After upgrading to iOS 16, the code below that I have to read the NDEF contents of an NFC Forum Type 2 Tag now returns an empty string. When running the same code on my iOS 15 device, this code works perfectly. When downgrading my iOS 16 device to iOS 15, this code works perfectly again. I can't find any documentation regarding changes made to CoreNFC in iOS 16 that would be affecting this, can anyone shed any light here please? func readerSession(_ session: NFCNDEFReaderSession, didDetect tags: [NFCNDEFTag]) { print(did detect) let str: String = nfcWriteContent if (tags.count > 1) { let retryInterval = DispatchTimeInterval.milliseconds(500) session.alertMessage = too_many_nfc_detected.localized() DispatchQueue.global().asyncAfter(deadline: .now() + retryInterval, execute: { session.restartPolling() }) return } let tag = tags.first! print(reading...) tag.readNDEF(completionHandler: {(ndefMessage: NFCNDEFMessage?, error: Error?) in var res = if (ndefMessage == nil) { // EVERY NFC SCAN ALW
Replies
1
Boosts
0
Views
1.2k
Activity
Sep ’22
Reply to Using Wallet.app to open doors with NFC reader
Deemer and where's the security of it? The phone reads the nfc stick, and then? Send a response to a server or what? What if the service of the server is not running?
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’22
Disappointed in AirPods Pro
I’ve only had these for like a year now, and the battery life on them was never really that good. And it has only been getting worse with time. Also, you would think that transparency mode could save batteyr-life but really transparency mode seems to make the battery life even worse than with noise cancellation. I would rather just turn off both transparency mode and noise cancellation without the sound being 10x worse. Where the heck are the controls for AirPod settings? Why isn’t there a section in the settings app for AirPod settings? Why isn’t there a Low Power Mode for AirPods? These are all things that either other Bluetooth wireless headphones have, or Apple has implemented on its’ other devices. Does Apple think they can just totally slack on competitive development for AirPods because they usually sound great; if now the best compared to other Bluetooth pod types? Because I will switch to a better brand soon with more features, better battery, better settings app, etc. -like Bose. I have a pair of Bo
Replies
1
Boosts
0
Views
998
Activity
Sep ’22
mobile access solutions - NFC Apple Wallet Tenant Employee badge
Why is there no public APIs for developers (PassKit) to implement Apple Wallet NFC for employee badges as announced in WWDC 2021 Keynote? Can a simple Apple platforms developer implement this for the organization they are working on and don't have to go to third-party providers which seem to have this capability? Seems that I need to reach out to the below companies to enable this in the current organization I'm working with: third party providers: https://swiftconnect.io/owners/ https://www.hidglobal.com/solutions/access-control/hid-mobile-access-solutions
Replies
1
Boosts
0
Views
1.8k
Activity
Sep ’22
Reply to NFC Tags won't read after iOS 15.4 update
Has there been any solution to this? Trying to write like 200 NFC tags but phone isn't picking up a single one.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
NFC Tag Reading
Hello, I have finally got to the bottom of why some of our correctly NDEF formatted tags are not read by iOS devices. Having tested this on ISO15693 Type 5 NDEF formatted tags (ST-M24LR04E-R & ST-25DV64KC-I). When the bit representing whether the tag supports reading multiple blocks is set to 1b, found in the Capability Container, the tag will not be read with Background Tag Reading or detected by NFCNDEFReaderSession. I am able to use NFCTagReaderSession polling for .iso15693 which correctly detects the tags and then have had to roll my own NDEF parsing to work around this. I'd love to use NFCNDEFReaderSession and the Background Tag Reading though if possible... Is anyone else able to verify this with other tags?
Replies
0
Boosts
0
Views
771
Activity
Aug ’22
Reply to Apple Watch NFC Tags
Power management is key, so power up nfc only when Siri is listening
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to Using Wallet.app to open doors with NFC reader
I understand your problem and fully agree to that. However, i have implemented a workaround here, which works flawless since years. I‘ve put a NFC sticker next to my door. I also have added a workflow/shortcut that triggers when the phone is next to the sticker and simply opens the door. Not the same, management gets harder for many devices, but it works.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to NFC Tags won't read after iOS 15.4 update
Update on iOS 15.6.1 - no change, NFC reader still dead on my iPhone. Using my Apple Watch - NFC working as expected and no problems, it is reading payment terminals without no issue.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22
App Clips - TestFlight Qrcode Test
Hello, I'm developing an application that makes use of App Clips, but I don't intend to submit it right now, I'd like the test team to test it in TestFlight first. I already have all the settings in the app and the Domain links defined and the Apple-App-Site-Association (AASA) file configured in the domain, and where in TestFlight it says it is valid. I can also create Advanced Experiences, with different extensions of addresses and banners. However, whenever test users try to point to the generated QRcodes, the following message appears: this app clip is not currently available in your country or region sometimes without banner, other times the banner appears. Can't test Qrcode or NFC Tag situations without the application being submitted to the Store for all users? Are there testing limitations with the Clips and TestFlight app? or to test an app clip with TestFlight do you have to use local experiences on devices, or just manually open the app clips in TestFlight?
Replies
0
Boosts
0
Views
710
Activity
Aug ’22
Reply to NFC Tags won't read after iOS 15.4 update
The fix for me (iPhone 12, iOS 15.6) was to go into Settings -> General -> AirDrop and change the setting from Contacts Only to Everyone. After that, scanning of NFC tags worked again. Switched the setting back to Contacts Only and tried scanning the NFC tag again and it still worked. I assume this is a bug.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to NFC Tags won't read after iOS 15.4 update
Same issue here too. I thought it is coming from the new iPhone case I'm using. I called Apple service and after the troubleshoot, they said everything is fine and requested a physical check on the phone (which was not achievable for me). however I noticed it's not working even without the case as well. If you remove the case, won't make any change I was thinking the case has cause permanent damage to my phone's NFC reader. So what's the plan now? are they even reading all this information here???
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22
NFC Tag emulation inside the application
Hi, I know, there are the same questions on forum posted before, just it looks like they become old and almost of them are left without answers. We need to develop the application, which can use NFC inside and emulate the NFC Tag. Our embedded device contains the NFC reader and sends the NDEF messages with custom dynamic payload and it is expected that the answers will contain also custom payload depending on the request. Simply, we need to implement data exchange using NFC NDEF messages. We examined the Core NFC framework - it allows only using the iPhone as NFC reader. Looks like not suitable for us. Then we checked the Pass.NFC framework and, if we understand all correctly, it allows to create the NFC card/pass in the wallet with fixed payload, also looks not suitable for us. There is the application NFC Tools Pro in the App Store and it allows to emulate the NFC Card inside, there is the demo video how it works. Here is the l
Replies
5
Boosts
0
Views
5.6k
Activity
Aug ’22
NFC Communication
We are implementing some solutions across NFC and we came across issue which we are trying to figure out. Does app on iphone does allows to write NFC tags on another iphone mobile using our custom app ?
Replies
0
Boosts
0
Views
469
Activity
Jul ’22
Reply to Using Wallet.app to open doors with NFC reader
Other demo NFC pass creating site: https://originpass.com/VTAP/
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jul ’22