@capgo/capacitor-nfc 8.0.3 → 8.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ import UIKit
4
4
 
5
5
  @objc(NfcPlugin)
6
6
  public class NfcPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.3"
7
+ private let pluginVersion: String = "8.0.4"
8
8
 
9
9
  public let identifier = "NfcPlugin"
10
10
  public let jsName = "CapacitorNfc"
@@ -274,7 +274,7 @@ public class NfcPlugin: CAPPlugin, CAPBridgedPlugin {
274
274
  if let miFare = tag as? NFCMiFareTag {
275
275
  return miFare.identifier
276
276
  }
277
- if #available(iOS 13.3, *), let iso7816 = tag as? NFCISO7816Tag {
277
+ if let iso7816 = tag as? NFCISO7816Tag {
278
278
  return iso7816.identifier
279
279
  }
280
280
  if let iso15693 = tag as? NFCISO15693Tag {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-nfc",
3
- "version": "8.0.3",
3
+ "version": "8.0.4",
4
4
  "description": "Native NFC tag discovery, reading and writing for Capacitor apps on iOS and Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",