Search results for

nfc

1,143 results found

Post

Replies

Boosts

Views

Activity

NFC Passport Reader - Libraries
Hi community! I'm on the hunt for alternatives to digital onboarding and NFC reader libraries on iOS (and maybe on Android too). Do any of you know of alternatives to: https://github.com/AndyQ/NFCPassportReader They should be compatible with ICAO Doc 9303 MRTD - https://www.icao.int/publications/pages/publication.aspx?docnum=9303 Your insights and suggestions mean a lot! Thanks! Description: NFCPassportReader - This package handles reading an NFC Enabled passport using iOS 13 CoreNFC APIS Version 2 (and the main branch) now uses Swift Async/Await for communication. If you need an earlier version, please use 1.1.9 or below! Supported features: Basic Access Control (BAC) Secure Messaging Reads DG1 (MRZ data) and DG2 (Image) in both JPEG and JPEG2000 formats, DG7, DG11, DG12, DG14 and DG15 (also SOD and COM datagroups) Passive Authentication Active Authentication Chip Authentication (ECDH DES and AES keys tested, DH DES AES keys implemented ad should work but currently not tested) PACE - curren
0
0
1.5k
Dec ’23
How to enable NFC in Application for developer mode?
I try some prjects for NFC samples, also try the official sample in this link: https://developer.apple.com/documentation/corenfc/building_an_nfc_tag-reader_app#3240401 My issue is that I can detect a tag from Shortcut App, but I can't detect anything in the offical App. My device is iphone 11 with ios 17.0.2 and iphone 11 with 13 with ios 16.5.1. Can some body help me about this? Thanks!
0
0
692
Dec ’23
Reply to Error 1110 - Report & Solution (Data Recovery)
I got new info thanks to Reddit User: DenyTheFlesh Copy and paste: It's the swipe up to upgrade screen but in Chinese. Basically Stockholm (that's your Apple Pay/NFC chip with the Secure Element) took a firmware update and iOS needs to do encryption stuff to the entire storage contents, but first it needs to decrypt what's already there by getting the correct passcode from you. Each attempt is a 15+ minute operation even if the passcode is wrong. If you know FOR SURE that the passcode you entered is 100% correct, then perhaps Stockholm took a bad update or there is something seriously corrupt in userland. If it can't decrypt for this operation, then it can't decrypt to access your stuff, and a full restore is your only option.
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’23
How to read Mifare Classic 1k ISO 14443-3A card details?
Developing an application to read card details using NFC. Actually, it's a cross-platform (MAUI) app, but it implements the code in native. ISO 14443-4 cards are working fine when tap a card DidDetectTags method hitting. For the mentioned Mifare card it's not working. Tried in NFCTagReaderSessionDelegate and NFCNDEFReaderSessionDelegate. Also in the info.plist configured below keys com.apple.developer.nfc.readersession.iso7816.select-identifiers //Confirured more than 200+ keys com.apple.developer.nfc.readersession.formats TAG NDEF Testing device : iPhone 7 plus, iOS : 15.8 I am suspecting selector identifier may not configured correctly for mifare classic 1k card, can anyone help me on this what i am missing?
1
0
1.7k
Nov ’23
Apple NFC protocol start requirement
Hello Sir/Madam, In Apple Car Keys Specification R1 - Developer Preview 3 page 24, table 2-9, is mentioned the NFC Protocol Start parameter with the value of 5ms. Looks like this time was defined to include all the NFC procedures regarding protocol discovery and anti-collision, until the Select AID for the CCC applet command is issued. Quote: NFC protocol start includes all ISO 14443-3 commands required to setup the NFC communication (REQA, ATQA, AC, etc.).. This requirement seems highly unfeasible on our side. The typical time on some of our products is between 30-50ms for the NFC protocol link set up. This includes the unmodulated carrier time, the VASUP command, REQA/ATQA sequence, HLTA/WUPA/ATQA sequence, ANTICOLLISION sequence, SELECT device ID/SAK/RATS/ATS sequence, all of which impossible to fit in 5ms even if we reduce everything to back to back communication and no delays between commands. Can you further define what the NFC Protocol Start 5ms t
0
0
977
Nov ’23
NFC reading inconsistencies across devices
Did anybody encounter issues while doing an NFC tag reading, particularly on the Pro devices? Based on our statistics, almost half of the readings with iPhone 12 Pro failed, due to NFC tag connection issues. Please see below the failure rate: Top 3 devices: iPhone 12 Pro with 41,5% failure rate iPhone 11 Pro Max with 33,3% failure rate iPhone SE 2nd Gen with 25% failure rate If we take into consideration the deviation from expected value, see below: The following types had a higher error value than statistically expected when used significantly: iPhone 14 Pro iPhone 12 Pro iPhone 15 Pro The following types, on the other hand, had few to no reading errors with statistically relevant use: iPhone 14 iPhone 13 iPhone 13 Pro Max The essential questions are: What are the differences between the iPhone 14 and iPhone 14 Pro in terms of NFC reading functionality? What are the differences between the iPhone 11 Pro and iPhone 12 Pro in terms of NFC reading functionality? See list of d
0
0
806
Nov ’23
Near Field Communication Tag Reading Capability Not Showing
It's my first time posting here so I don't really know what to do. I'm fairly new to iOS development and I have project that I need to make that uses NFC (CoreNFC). As I encountered errors in my code, I realized I needed to add the NFC capability however it's not showing in the capabilities list. After a bit of research, I found someone saying I needed to have an Apple Developer account (for 99$) to unlock this feature. Is this true? If not, what can I do to add the Near Field Communication Tag Reading capability to my project?
0
0
960
Nov ’23
CoreNFC IS5693 Tags
Hello, I have ICode Slix and Slix 2 NFC tags. I'm working on an iOS app for reading and writing data to these tags. I've tried various approaches, but I'm having trouble with the writing part. Could you please assist me in understanding how to write encode URL in that tags Here's my current code Because these tag is not bydefault NDEF format and I want to right url in that tag and make it NDEF formattable. I tried to write data with NFC Tool application it can write data easily in that but my code doesn't work. how to right data in NFC forum type 5 tags? func tagReaderSession(_ session: NFCTagReaderSession, didDetect tags: [NFCTag]) { print(Connecting To Tag) if tags.count > 1 { session.alertMessage = More Than One Tag Detected, Please try again session.invalidate() return } let tag = tags.first! session.connect(to: tag) { error in if let error = error { session.invalidate(errorMessage: Connection Failed: (error.localizedDescription)) return } if case let .iso15693(sTag) = tag {
1
0
718
Nov ’23