Skip to content

Commit fb2f063

Browse files
committed
Ported TabBarIOS to OSS and unified implementation
1 parent ab25378 commit fb2f063

51 files changed

Lines changed: 1121 additions & 451 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Examples/Movies/Movies.xcodeproj/project.pbxproj

Lines changed: 49 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,30 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
1341801E1AA91750003F314A /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1341801B1AA91740003F314A /* libRCTNetwork.a */; };
11+
13442C061AA90EA00037E5B0 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 13442C051AA90E7D0037E5B0 /* libRCTImage.a */; };
1012
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
1113
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
1214
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
1315
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14-
58C572691AA6239800CDF9C8 /* libRCTDataManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C572631AA6236600CDF9C8 /* libRCTDataManager.a */; };
15-
58C5726A1AA6239B00CDF9C8 /* libRCTNetworkImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C572561AA6236500CDF9C8 /* libRCTNetworkImage.a */; };
1616
58C5726B1AA6239E00CDF9C8 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C5725B1AA6236500CDF9C8 /* libRCTText.a */; };
1717
58C5726C1AA623A200CDF9C8 /* libReactKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C572681AA6236600CDF9C8 /* libReactKit.a */; };
1818
/* End PBXBuildFile section */
1919

2020
/* Begin PBXContainerItemProxy section */
21-
58C572551AA6236500CDF9C8 /* PBXContainerItemProxy */ = {
21+
1341801A1AA91740003F314A /* PBXContainerItemProxy */ = {
2222
isa = PBXContainerItemProxy;
23-
containerPortal = 587650F31A9EB120008B8F17 /* RCTNetworkImage.xcodeproj */;
23+
containerPortal = 134180151AA91740003F314A /* RCTNetwork.xcodeproj */;
24+
proxyType = 2;
25+
remoteGlobalIDString = 58B511DB1A9E6C8500147676;
26+
remoteInfo = RCTNetwork;
27+
};
28+
13442C041AA90E7D0037E5B0 /* PBXContainerItemProxy */ = {
29+
isa = PBXContainerItemProxy;
30+
containerPortal = 13442C001AA90E7D0037E5B0 /* RCTImage.xcodeproj */;
2431
proxyType = 2;
2532
remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
26-
remoteInfo = RCTNetworkImage;
33+
remoteInfo = RCTImage;
2734
};
2835
58C5725A1AA6236500CDF9C8 /* PBXContainerItemProxy */ = {
2936
isa = PBXContainerItemProxy;
@@ -32,13 +39,6 @@
3239
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
3340
remoteInfo = RCTText;
3441
};
35-
58C572621AA6236600CDF9C8 /* PBXContainerItemProxy */ = {
36-
isa = PBXContainerItemProxy;
37-
containerPortal = 587650F01A9EB120008B8F17 /* RCTDataManager.xcodeproj */;
38-
proxyType = 2;
39-
remoteGlobalIDString = 58B511DB1A9E6C8500147676;
40-
remoteInfo = RCTDataManager;
41-
};
4242
58C572671AA6236600CDF9C8 /* PBXContainerItemProxy */ = {
4343
isa = PBXContainerItemProxy;
4444
containerPortal = 587650F91A9EB120008B8F17 /* ReactKit.xcodeproj */;
@@ -49,15 +49,15 @@
4949
/* End PBXContainerItemProxy section */
5050

5151
/* Begin PBXFileReference section */
52+
134180151AA91740003F314A /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = ../../Libraries/Network/RCTNetwork.xcodeproj; sourceTree = "<group>"; };
53+
13442C001AA90E7D0037E5B0 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = ../../Libraries/Image/RCTImage.xcodeproj; sourceTree = "<group>"; };
5254
13B07F961A680F5B00A75B9A /* Movies.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Movies.app; sourceTree = BUILT_PRODUCTS_DIR; };
5355
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
5456
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
5557
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
5658
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
5759
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5860
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
59-
587650F01A9EB120008B8F17 /* RCTDataManager.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTDataManager.xcodeproj; path = ../../Libraries/Network/RCTDataManager.xcodeproj; sourceTree = SOURCE_ROOT; };
60-
587650F31A9EB120008B8F17 /* RCTNetworkImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetworkImage.xcodeproj; path = ../../Libraries/Image/RCTNetworkImage.xcodeproj; sourceTree = SOURCE_ROOT; };
6161
587650F61A9EB120008B8F17 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = ../../Libraries/Text/RCTText.xcodeproj; sourceTree = SOURCE_ROOT; };
6262
587650F91A9EB120008B8F17 /* ReactKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactKit.xcodeproj; path = ../../ReactKit/ReactKit.xcodeproj; sourceTree = SOURCE_ROOT; };
6363
/* End PBXFileReference section */
@@ -67,8 +67,8 @@
6767
isa = PBXFrameworksBuildPhase;
6868
buildActionMask = 2147483647;
6969
files = (
70-
58C572691AA6239800CDF9C8 /* libRCTDataManager.a in Frameworks */,
71-
58C5726A1AA6239B00CDF9C8 /* libRCTNetworkImage.a in Frameworks */,
70+
1341801E1AA91750003F314A /* libRCTNetwork.a in Frameworks */,
71+
13442C061AA90EA00037E5B0 /* libRCTImage.a in Frameworks */,
7272
58C5726B1AA6239E00CDF9C8 /* libRCTText.a in Frameworks */,
7373
58C5726C1AA623A200CDF9C8 /* libReactKit.a in Frameworks */,
7474
);
@@ -77,6 +77,22 @@
7777
/* End PBXFrameworksBuildPhase section */
7878

7979
/* Begin PBXGroup section */
80+
134180161AA91740003F314A /* Products */ = {
81+
isa = PBXGroup;
82+
children = (
83+
1341801B1AA91740003F314A /* libRCTNetwork.a */,
84+
);
85+
name = Products;
86+
sourceTree = "<group>";
87+
};
88+
13442C011AA90E7D0037E5B0 /* Products */ = {
89+
isa = PBXGroup;
90+
children = (
91+
13442C051AA90E7D0037E5B0 /* libRCTImage.a */,
92+
);
93+
name = Products;
94+
sourceTree = "<group>";
95+
};
8096
13B07FAE1A68108700A75B9A /* Movies */ = {
8197
isa = PBXGroup;
8298
children = (
@@ -93,22 +109,14 @@
93109
58C571FC1AA6124500CDF9C8 /* Libraries */ = {
94110
isa = PBXGroup;
95111
children = (
96-
587650F01A9EB120008B8F17 /* RCTDataManager.xcodeproj */,
97-
587650F31A9EB120008B8F17 /* RCTNetworkImage.xcodeproj */,
112+
134180151AA91740003F314A /* RCTNetwork.xcodeproj */,
113+
13442C001AA90E7D0037E5B0 /* RCTImage.xcodeproj */,
98114
587650F61A9EB120008B8F17 /* RCTText.xcodeproj */,
99115
587650F91A9EB120008B8F17 /* ReactKit.xcodeproj */,
100116
);
101117
name = Libraries;
102118
sourceTree = "<group>";
103119
};
104-
58C572521AA6236500CDF9C8 /* Products */ = {
105-
isa = PBXGroup;
106-
children = (
107-
58C572561AA6236500CDF9C8 /* libRCTNetworkImage.a */,
108-
);
109-
name = Products;
110-
sourceTree = "<group>";
111-
};
112120
58C572571AA6236500CDF9C8 /* Products */ = {
113121
isa = PBXGroup;
114122
children = (
@@ -125,14 +133,6 @@
125133
name = Products;
126134
sourceTree = "<group>";
127135
};
128-
58C5725E1AA6236500CDF9C8 /* Products */ = {
129-
isa = PBXGroup;
130-
children = (
131-
58C572631AA6236600CDF9C8 /* libRCTDataManager.a */,
132-
);
133-
name = Products;
134-
sourceTree = "<group>";
135-
};
136136
83CBB9F61A601CBA00E9B192 = {
137137
isa = PBXGroup;
138138
children = (
@@ -192,12 +192,12 @@
192192
projectDirPath = "";
193193
projectReferences = (
194194
{
195-
ProductGroup = 58C5725E1AA6236500CDF9C8 /* Products */;
196-
ProjectRef = 587650F01A9EB120008B8F17 /* RCTDataManager.xcodeproj */;
195+
ProductGroup = 13442C011AA90E7D0037E5B0 /* Products */;
196+
ProjectRef = 13442C001AA90E7D0037E5B0 /* RCTImage.xcodeproj */;
197197
},
198198
{
199-
ProductGroup = 58C572521AA6236500CDF9C8 /* Products */;
200-
ProjectRef = 587650F31A9EB120008B8F17 /* RCTNetworkImage.xcodeproj */;
199+
ProductGroup = 134180161AA91740003F314A /* Products */;
200+
ProjectRef = 134180151AA91740003F314A /* RCTNetwork.xcodeproj */;
201201
},
202202
{
203203
ProductGroup = 58C572571AA6236500CDF9C8 /* Products */;
@@ -216,25 +216,25 @@
216216
/* End PBXProject section */
217217

218218
/* Begin PBXReferenceProxy section */
219-
58C572561AA6236500CDF9C8 /* libRCTNetworkImage.a */ = {
219+
1341801B1AA91740003F314A /* libRCTNetwork.a */ = {
220220
isa = PBXReferenceProxy;
221221
fileType = archive.ar;
222-
path = libRCTNetworkImage.a;
223-
remoteRef = 58C572551AA6236500CDF9C8 /* PBXContainerItemProxy */;
222+
path = libRCTNetwork.a;
223+
remoteRef = 1341801A1AA91740003F314A /* PBXContainerItemProxy */;
224224
sourceTree = BUILT_PRODUCTS_DIR;
225225
};
226-
58C5725B1AA6236500CDF9C8 /* libRCTText.a */ = {
226+
13442C051AA90E7D0037E5B0 /* libRCTImage.a */ = {
227227
isa = PBXReferenceProxy;
228228
fileType = archive.ar;
229-
path = libRCTText.a;
230-
remoteRef = 58C5725A1AA6236500CDF9C8 /* PBXContainerItemProxy */;
229+
path = libRCTImage.a;
230+
remoteRef = 13442C041AA90E7D0037E5B0 /* PBXContainerItemProxy */;
231231
sourceTree = BUILT_PRODUCTS_DIR;
232232
};
233-
58C572631AA6236600CDF9C8 /* libRCTDataManager.a */ = {
233+
58C5725B1AA6236500CDF9C8 /* libRCTText.a */ = {
234234
isa = PBXReferenceProxy;
235235
fileType = archive.ar;
236-
path = libRCTDataManager.a;
237-
remoteRef = 58C572621AA6236600CDF9C8 /* PBXContainerItemProxy */;
236+
path = libRCTText.a;
237+
remoteRef = 58C5725A1AA6236500CDF9C8 /* PBXContainerItemProxy */;
238238
sourceTree = BUILT_PRODUCTS_DIR;
239239
};
240240
58C572681AA6236600CDF9C8 /* libReactKit.a */ = {
@@ -295,6 +295,7 @@
295295
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
296296
LIBRARY_SEARCH_PATHS = (
297297
"$(inherited)",
298+
"/Users/nicklockwood/fbobjc-hg/Libraries/FBReactKit/js/react-native-github/Libraries/Network/build/Debug-iphoneos",
298299
);
299300
OTHER_LDFLAGS = "-ObjC";
300301
PRODUCT_NAME = Movies;
@@ -314,6 +315,7 @@
314315
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
315316
LIBRARY_SEARCH_PATHS = (
316317
"$(inherited)",
318+
"/Users/nicklockwood/fbobjc-hg/Libraries/FBReactKit/js/react-native-github/Libraries/Network/build/Debug-iphoneos",
317319
);
318320
OTHER_LDFLAGS = "-ObjC";
319321
PRODUCT_NAME = Movies;

Examples/TicTacToe/TicTacToe.xcodeproj/project.pbxproj

Lines changed: 22 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,22 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
1341803E1AA91802003F314A /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1341803D1AA917ED003F314A /* libRCTImage.a */; };
1011
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
1112
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
1213
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
1314
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14-
58C571F31AA611C900CDF9C8 /* libRCTNetworkImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C571ED1AA611BA00CDF9C8 /* libRCTNetworkImage.a */; };
1515
58C572501AA6229900CDF9C8 /* libReactKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C572471AA6224300CDF9C8 /* libReactKit.a */; };
1616
58C572511AA6229D00CDF9C8 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C5724D1AA6224400CDF9C8 /* libRCTText.a */; };
1717
/* End PBXBuildFile section */
1818

1919
/* Begin PBXContainerItemProxy section */
20-
58C571EC1AA611BA00CDF9C8 /* PBXContainerItemProxy */ = {
20+
1341803C1AA917ED003F314A /* PBXContainerItemProxy */ = {
2121
isa = PBXContainerItemProxy;
22-
containerPortal = 58C571E71AA611BA00CDF9C8 /* RCTNetworkImage.xcodeproj */;
22+
containerPortal = 134180381AA917ED003F314A /* RCTImage.xcodeproj */;
2323
proxyType = 2;
2424
remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
25-
remoteInfo = RCTNetworkImage;
26-
};
27-
58C571EE1AA611BA00CDF9C8 /* PBXContainerItemProxy */ = {
28-
isa = PBXContainerItemProxy;
29-
containerPortal = 58C571E71AA611BA00CDF9C8 /* RCTNetworkImage.xcodeproj */;
30-
proxyType = 2;
31-
remoteGlobalIDString = 58B511681A9E6B3D00147676;
32-
remoteInfo = RCTNetworkImageTests;
25+
remoteInfo = RCTImage;
3326
};
3427
58C572461AA6224300CDF9C8 /* PBXContainerItemProxy */ = {
3528
isa = PBXContainerItemProxy;
@@ -45,16 +38,10 @@
4538
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
4639
remoteInfo = RCTText;
4740
};
48-
58C5724E1AA6224400CDF9C8 /* PBXContainerItemProxy */ = {
49-
isa = PBXContainerItemProxy;
50-
containerPortal = 587650DA1A9EB0DB008B8F17 /* RCTText.xcodeproj */;
51-
proxyType = 2;
52-
remoteGlobalIDString = 58B511A61A9E6C1300147676;
53-
remoteInfo = RCTTextTests;
54-
};
5541
/* End PBXContainerItemProxy section */
5642

5743
/* Begin PBXFileReference section */
44+
134180381AA917ED003F314A /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = ../../Libraries/Image/RCTImage.xcodeproj; sourceTree = "<group>"; };
5845
13B07F961A680F5B00A75B9A /* TicTacToe.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TicTacToe.app; sourceTree = BUILT_PRODUCTS_DIR; };
5946
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
6047
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
@@ -64,15 +51,14 @@
6451
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
6552
587650DA1A9EB0DB008B8F17 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = ../../Libraries/Text/RCTText.xcodeproj; sourceTree = "<group>"; };
6653
587650E31A9EB0DF008B8F17 /* ReactKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactKit.xcodeproj; path = ../../ReactKit/ReactKit.xcodeproj; sourceTree = "<group>"; };
67-
58C571E71AA611BA00CDF9C8 /* RCTNetworkImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetworkImage.xcodeproj; path = ../../Libraries/Image/RCTNetworkImage.xcodeproj; sourceTree = "<group>"; };
6854
/* End PBXFileReference section */
6955

7056
/* Begin PBXFrameworksBuildPhase section */
7157
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
7258
isa = PBXFrameworksBuildPhase;
7359
buildActionMask = 2147483647;
7460
files = (
75-
58C571F31AA611C900CDF9C8 /* libRCTNetworkImage.a in Frameworks */,
61+
1341803E1AA91802003F314A /* libRCTImage.a in Frameworks */,
7662
58C572501AA6229900CDF9C8 /* libReactKit.a in Frameworks */,
7763
58C572511AA6229D00CDF9C8 /* libRCTText.a in Frameworks */,
7864
);
@@ -81,6 +67,14 @@
8167
/* End PBXFrameworksBuildPhase section */
8268

8369
/* Begin PBXGroup section */
70+
134180391AA917ED003F314A /* Products */ = {
71+
isa = PBXGroup;
72+
children = (
73+
1341803D1AA917ED003F314A /* libRCTImage.a */,
74+
);
75+
name = Products;
76+
sourceTree = "<group>";
77+
};
8478
13B07FAE1A68108700A75B9A /* TicTacToe */ = {
8579
isa = PBXGroup;
8680
children = (
@@ -94,19 +88,10 @@
9488
name = TicTacToe;
9589
sourceTree = "<group>";
9690
};
97-
58C571E81AA611BA00CDF9C8 /* Products */ = {
98-
isa = PBXGroup;
99-
children = (
100-
58C571ED1AA611BA00CDF9C8 /* libRCTNetworkImage.a */,
101-
58C571EF1AA611BA00CDF9C8 /* RCTNetworkImageTests.xctest */,
102-
);
103-
name = Products;
104-
sourceTree = "<group>";
105-
};
10691
58C572071AA6126D00CDF9C8 /* Libraries */ = {
10792
isa = PBXGroup;
10893
children = (
109-
58C571E71AA611BA00CDF9C8 /* RCTNetworkImage.xcodeproj */,
94+
134180381AA917ED003F314A /* RCTImage.xcodeproj */,
11095
587650DA1A9EB0DB008B8F17 /* RCTText.xcodeproj */,
11196
587650E31A9EB0DF008B8F17 /* ReactKit.xcodeproj */,
11297
);
@@ -125,7 +110,6 @@
125110
isa = PBXGroup;
126111
children = (
127112
58C5724D1AA6224400CDF9C8 /* libRCTText.a */,
128-
58C5724F1AA6224400CDF9C8 /* RCTTextTests.xctest */,
129113
);
130114
name = Products;
131115
sourceTree = "<group>";
@@ -189,8 +173,8 @@
189173
projectDirPath = "";
190174
projectReferences = (
191175
{
192-
ProductGroup = 58C571E81AA611BA00CDF9C8 /* Products */;
193-
ProjectRef = 58C571E71AA611BA00CDF9C8 /* RCTNetworkImage.xcodeproj */;
176+
ProductGroup = 134180391AA917ED003F314A /* Products */;
177+
ProjectRef = 134180381AA917ED003F314A /* RCTImage.xcodeproj */;
194178
},
195179
{
196180
ProductGroup = 58C572481AA6224300CDF9C8 /* Products */;
@@ -209,18 +193,11 @@
209193
/* End PBXProject section */
210194

211195
/* Begin PBXReferenceProxy section */
212-
58C571ED1AA611BA00CDF9C8 /* libRCTNetworkImage.a */ = {
196+
1341803D1AA917ED003F314A /* libRCTImage.a */ = {
213197
isa = PBXReferenceProxy;
214198
fileType = archive.ar;
215-
path = libRCTNetworkImage.a;
216-
remoteRef = 58C571EC1AA611BA00CDF9C8 /* PBXContainerItemProxy */;
217-
sourceTree = BUILT_PRODUCTS_DIR;
218-
};
219-
58C571EF1AA611BA00CDF9C8 /* RCTNetworkImageTests.xctest */ = {
220-
isa = PBXReferenceProxy;
221-
fileType = wrapper.cfbundle;
222-
path = RCTNetworkImageTests.xctest;
223-
remoteRef = 58C571EE1AA611BA00CDF9C8 /* PBXContainerItemProxy */;
199+
path = libRCTImage.a;
200+
remoteRef = 1341803C1AA917ED003F314A /* PBXContainerItemProxy */;
224201
sourceTree = BUILT_PRODUCTS_DIR;
225202
};
226203
58C572471AA6224300CDF9C8 /* libReactKit.a */ = {
@@ -237,13 +214,6 @@
237214
remoteRef = 58C5724C1AA6224400CDF9C8 /* PBXContainerItemProxy */;
238215
sourceTree = BUILT_PRODUCTS_DIR;
239216
};
240-
58C5724F1AA6224400CDF9C8 /* RCTTextTests.xctest */ = {
241-
isa = PBXReferenceProxy;
242-
fileType = wrapper.cfbundle;
243-
path = RCTTextTests.xctest;
244-
remoteRef = 58C5724E1AA6224400CDF9C8 /* PBXContainerItemProxy */;
245-
sourceTree = BUILT_PRODUCTS_DIR;
246-
};
247217
/* End PBXReferenceProxy section */
248218

249219
/* Begin PBXResourcesBuildPhase section */
@@ -288,9 +258,7 @@
288258
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289259
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
290260
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
291-
LIBRARY_SEARCH_PATHS = (
292-
"$(inherited)",
293-
);
261+
LIBRARY_SEARCH_PATHS = "$(inherited)";
294262
OTHER_LDFLAGS = "-ObjC";
295263
PRODUCT_NAME = TicTacToe;
296264
};
@@ -302,9 +270,7 @@
302270
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
303271
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
304272
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
305-
LIBRARY_SEARCH_PATHS = (
306-
"$(inherited)",
307-
);
273+
LIBRARY_SEARCH_PATHS = "$(inherited)";
308274
OTHER_LDFLAGS = "-ObjC";
309275
PRODUCT_NAME = TicTacToe;
310276
};

0 commit comments

Comments
 (0)