Skip to content

Commit

Permalink
fix: wrong path for bridging header in xcode proj file
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Apr 3, 2024
1 parent 4441b7a commit fc0a7a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ios/RNIapIos.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
B3E7B5891CC2AC0600A0062D /* RNIapIos.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNIapIos.m; sourceTree = "<group>"; };
CBA2290A2B027DA500C780F8 /* ThreadSafe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThreadSafe.swift; sourceTree = "<group>"; };
CBA2290B2B027DA500C780F8 /* LatestPromiseKeeper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LatestPromiseKeeper.swift; sourceTree = "<group>"; };
F4FF95D5245B92E700C19C63 /* RNIapIosIap-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNIapIosIap-Bridging-Header.h"; sourceTree = "<group>"; };
F4FF95D5245B92E700C19C63 /* RNIapIos-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNIapIos-Bridging-Header.h"; sourceTree = "<group>"; };
F4FF95D6245B92E800C19C63 /* RNIapIos.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RNIapIos.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand Down Expand Up @@ -59,7 +59,7 @@
CBA2290A2B027DA500C780F8 /* ThreadSafe.swift */,
F4FF95D6245B92E800C19C63 /* RNIapIos.swift */,
B3E7B5891CC2AC0600A0062D /* RNIapIos.m */,
F4FF95D5245B92E700C19C63 /* RNIapIosIap-Bridging-Header.h */,
F4FF95D5245B92E700C19C63 /* RNIapIos-Bridging-Header.h */,
134814211AA4EA7D00B7C361 /* Products */,
);
sourceTree = "<group>";
Expand Down Expand Up @@ -238,7 +238,7 @@
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = RNIapIos;
SKIP_INSTALL = YES;
SWIFT_OBJC_BRIDGING_HEADER = "RNIapIosIap-Bridging-Header.h";
SWIFT_OBJC_BRIDGING_HEADER = "RNIapIos-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
};
Expand All @@ -257,7 +257,7 @@
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = RNIapIos;
SKIP_INSTALL = YES;
SWIFT_OBJC_BRIDGING_HEADER = "RNIapIosIap-Bridging-Header.h";
SWIFT_OBJC_BRIDGING_HEADER = "RNIapIos-Bridging-Header.h";
SWIFT_VERSION = 5.0;
};
name = Release;
Expand Down

0 comments on commit fc0a7a1

Please sign in to comment.