@capgo/capacitor-nfc 8.0.3 → 8.0.5

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.
@@ -656,10 +656,6 @@ public class CapacitorNfcPlugin extends Plugin {
656
656
  return;
657
657
  }
658
658
 
659
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
660
- return;
661
- }
662
-
663
659
  Context context = getContext();
664
660
  if (context == null) {
665
661
  return;
@@ -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.5"
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.5",
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",