Skip to content

Commit

Permalink
Fix info.plist warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yanngodeau committed Jun 4, 2021
1 parent 657e26d commit fc4191f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions SimplyNFC.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
B4CE7B662654293A008CA2B9 = {
isa = PBXGroup;
children = (
B4CE7B742654293A008CA2B9 /* Info.plist */,
B4798CD2265819C400A06CB9 /* Package.swift */,
B429A9A2265553F700B9C6DC /* README.md */,
B41246B72657FCEB00EFD86A /* Sources */,
Expand All @@ -86,7 +87,6 @@
isa = PBXGroup;
children = (
B4CE7B732654293A008CA2B9 /* SimplyNFC.h */,
B4CE7B742654293A008CA2B9 /* Info.plist */,
B4CE7B8A2654296D008CA2B9 /* NFCManager.swift */,
B46CB4B826545F7300843F84 /* NFCError.swift */,
);
Expand Down Expand Up @@ -361,7 +361,7 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Sources/SimplyNFC/Info.plist;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
Expand Down Expand Up @@ -389,7 +389,7 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Sources/SimplyNFC/Info.plist;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
LD_RUNPATH_SEARCH_PATHS = (
Expand Down
4 changes: 2 additions & 2 deletions Sources/SimplyNFC/NFCManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ open class NFCManager: NSObject {
// MARK: - Properties

open private(set) var session: NFCNDEFReaderSession?
var didBecomeActive: DidBecomeActive?
var didDetect: DidDetect?
private var didBecomeActive: DidBecomeActive?
private var didDetect: DidDetect?
private var sessionConnect = NFCNDEFReaderSession.connect
private var action: NFCAction?

Expand Down

0 comments on commit fc4191f

Please sign in to comment.