Search results for

nfc

1,175 results found

Post

Replies

Boosts

Views

Activity

CoreNFC framework missing in iPad and non NFC devices
I'm developing an app that between other things reads NFC tags using CoreNFC. I'm checking if NFC is available by using `NFCNDEFReaderSession.readingAvailable`. On iOS 11 it would return false allowing the app to run on devices that don't support NFC.On iOS all the betas up to date the app crashes while loading the dyld with an error saying that the image for CoreNFC framwork was not found.Is this a bug? Is there a new way of checking for NFC?It works on the simulator. Crash only happens on divices not supporting NFC
3
0
3.7k
Jul ’18
NFC - ISO15693 - custom command
Hello, Im trying to read data from an ISO15693 tag (M24LR64E-R from STMicroelectronics). Im using react native and react-native-nfc-manager - https://github.com/whitedogg13/react-native-nfc-manager/. Here my code when I send customCommand: tt// init manager t NfcManager.start() tt// waiting for a tag ttlet resp = await NfcManager.requestTechnology(tech, {t ttttalertMessage: 'Ready to scan tag't tt}); ttlet tag = awaitNfcManager.getTag(); const handler = NfcManager.getIso15693HandlerIOS() const flags = Nfc15693RequestFlagIOS.HighDataRate const customCommandCode = 0xb3 tt// some bytes const customRequestParameters = bytes.slice(2, bytes.length) tt// error with this cmd resp = await handler.customCommand({ flags, customCommandCode, customRequestParameters }) But I receive this error (throw exception): [CoreNFC] 00000002 83601300 -[NFCTagReaderSession transceive:tagUpdate:error:]:710 Error Domain=NFCError Code=100 Tag connection lost UserInfo={NSLocalizedDescription=Tag connection lost} Do you k
0
0
968
Nov ’20
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
663
Jan ’23
SOLVED - Adding NFC Frameworks in Xcode
I have the current Xcode 9 beta, and I've created a completely new project based on Objective C so I can explore the NFC functionality.I've added the CoreNFC.framework in Linked FrameworksI've also added Privacy - NFC Scan Usage Description to my info.plistHowever as soon as I add:#import <CoreNFC/CoreNFC.h>I get an error - File Not Found CoreNFC.hAnyone know why I cannot add this framework to my project?[EDIT] Typical Apple the errors are not descriptive at all, you have to have a device plugged in, trying to build on simulator or even generic device for me fails to build the project. Once I plugged in the iPhone 7 the errors dissapeared [/EDIT]Plasma
1
0
1.3k
Jun ’17
How to implement NFC Reader in SwiftUI?
Hi, does anyone know how to enable creating or configuring Near NFC Reader in SwiftUI? I've already added the capability, the permissions in info.plist, the entitlement, and the SwiftUI code, but without success. Here's the example code: class PaymentT2PViewModel: NSObject, ObservableObject { @Published var paymentT2PUIState: PaymentT2PUIState // MARK: - NFC Properties @Published var nfcMessage: String = .empty @Published var isNFCReading: Bool = false private var nfcSession: NFCTagReaderSession? init(paymentT2PUIState: PaymentT2PUIState) { self.paymentT2PUIState = paymentT2PUIState super.init() ) } func startNFCReading() { print(INICIO: startNFCReading llamado) guard NFCTagReaderSession.readingAvailable else { print(ERROR: NFC NO disponible en este dispositivo) Task { @MainActor in self.nfcMessage = NFC no disponible en este dispositivo } return } print(NFC disponible, creando sesión...) nfcSession = NFCTagReaderSession( pollingOption: [.iso14443, .iso15693, .iso1
0
0
304
Nov ’25
Reply to Mifare Plus and iOS 13
How do you get the dump ?Could you get the dump for Mifare Ultralight and compare ?Did you ask NXP if there is something special in Mifare Plus that could explain ?In particular, here it says:No NDEF data storage present:Is it the same on Ultralight ?I read thish ttps://atadistance.net/2018/11/07/ios-12-apple-pay-wallet-pulled-a-mifare-on-us-and-nobody-noticed/It is not clear if Apple NFC supports all Mifare variationshttps://stackoverflow.com/questions/44429828/it-is-possible-to-read-protected-nfc-tags-in-iosThey note that:Core NFC only works with NFC tag that are NDEF formatted. Thus, you can only interact with NFC tags that adhere to the NDEF (NFC Data Exchange Format) hardware abstraction layer specified by the NFC Forum. Specifically, with NFC Forum tag types 1 to 5.Core NFC overview page:Reading NFC NDEF tags is supported on iPhone 7 and iPhone 7 Plus.Using Core NFC, you can read Near Field Communication (
Topic: App & System Services SubTopic: Drivers Tags:
Aug ’19
Flutter NFC tranceive comands
Hi there. I am using flutter_nfc_kit (https://pub.dev/packages/flutter_nfc_kit) to make application that sends bytes to NFC module using tranceive commands, but really often system respond with error 500 or 103... Is there anything in this package that I can change for my commands to work fine? Cause now when I try to scan data it takes minimum like 30 seconds whereas on Android it takes like 7-10 seconds every time Thanks for any feedback
0
0
709
Jan ’24
whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement
We have been struggling to get support and answeres regarding this roadblock : Request in whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement for our iOS application Our application utilizes Core NFC to enable reading and writing of NFC tags, simplifying user interactions with NFC-enabled devices and services. The NDEF entitlement is essential for our app to deliver its core functionality effectively. Build Environment: Our app is developed and built using Xcode 16.4 on Codemagic’s cloud-based CI/CD platform, which utilizes a compatible macOS version (e.g., macOS Sonoma 14.4 or later). The app targets iOS 18 and uses Core NFC APIs for NDEF tag reading and writing. so far we cant get it to read or write as ios is restricking us
1
0
146
Jul ’25
Unable to write to NFC Tag using CoreNFC in iOS
We are using an NFC tag that complies with ISO14443A and B standards (ISO-DEP) and supports ISO/IEC 7816 security. We are attempting to write some data using CoreNFC's NFCNDEFReaderSessionDelegate. We can detect the tag, but when we try to connect to it, it displays NFC Error (Tag Connection Lost). We also attempted NFCTagReaderSessionDelegate, but we were unable to detect the tag at that moment. Note that we have included the Privacy - NFC Reader Usage Description and ISO7816 application IDs for NFC Tag Reader Session to info.plist. Tag Reader Session Formats for Near Field Communication in entitlements.plist Can you advise on whether the problem is caused by the tag we're using? Or the CoreNFC library does not support writing? Thank you for your valuable time and assistance
0
0
837
Jul ’23