-
|
Hello All, I was able to create a Ionic app with Capawesome NFC plugin to read Mifare Classic cards on Android. Unfortunatelly the same app fails to initialize the NFC reader on iOS. It returns "not implemented". My test phone is an iPhone SE 2gen. Only this iPhone has issues, or all have issues with Mifare Classic cards? Sorry, i'm new to NFC technology, I need some help. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hi, this is a configuration issue. Please check out our iOS Troubleshooting Guide for more information. |
Beta Was this translation helpful? Give feedback.
1. The "not implemented" error
The
isEnabled()method is Android-only and throws a "not implemented" error on iOS. iOS doesn't have a global NFC on/off toggle like Android, so this check isn't needed there.You can fix this by wrapping the call in a platform check:
This will allow the scan session to start on iOS.
2. MIFARE Classic is not supported on iOS
Unfortunately, MIFARE Classic cards are not supported on iOS. This is a ha…