Skip to content

Commit

Permalink
[iOS] Fix manual linking (#6)
Browse files Browse the repository at this point in the history
Fix #4
  • Loading branch information
brunolemos authored and janicduplessis committed Aug 30, 2019
1 parent 1b9fcde commit 79cc3d6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ios/SafeAreaView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/* Begin PBXBuildFile section */
19AC186D23048EBB0093B581 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 19AC186C23048EBB0093B581 /* RNCSafeAreaView.m */; };
2EF2DACC23198DA400BBA425 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EF2DACB23198DA400BBA425 /* RNCSafeAreaViewManager.m */; };
C923EDBC220C2C1A00D3100F /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C923EDBB220C2C1A00D3100F /* SystemConfiguration.framework */; };
/* End PBXBuildFile section */

Expand All @@ -27,6 +28,8 @@
134814201AA4EA6300B7C361 /* libRNCSafeAreaContext.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNCSafeAreaContext.a; sourceTree = BUILT_PRODUCTS_DIR; };
19AC186B23048EBB0093B581 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = SafeAreaView/RNCSafeAreaView.h; sourceTree = "<group>"; };
19AC186C23048EBB0093B581 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = SafeAreaView/RNCSafeAreaView.m; sourceTree = "<group>"; };
2EF2DACA23198DA300BBA425 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = "<group>"; };
2EF2DACB23198DA400BBA425 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = "<group>"; };
C923EDBB220C2C1A00D3100F /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */

Expand All @@ -53,6 +56,8 @@
58B511D21A9E6C8500147676 = {
isa = PBXGroup;
children = (
2EF2DACA23198DA300BBA425 /* RNCSafeAreaViewManager.h */,
2EF2DACB23198DA400BBA425 /* RNCSafeAreaViewManager.m */,
19AC186B23048EBB0093B581 /* RNCSafeAreaView.h */,
19AC186C23048EBB0093B581 /* RNCSafeAreaView.m */,
134814211AA4EA7D00B7C361 /* Products */,
Expand Down Expand Up @@ -125,6 +130,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2EF2DACC23198DA400BBA425 /* RNCSafeAreaViewManager.m in Sources */,
19AC186D23048EBB0093B581 /* RNCSafeAreaView.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down

0 comments on commit 79cc3d6

Please sign in to comment.