Skip to content

Commit 2a7bde0

Browse files
janicduplessisfacebook-github-bot
authored andcommitted
Add missing file to xcodeproj
Summary: 5701ae2 didn't add the new files to xcodeproj, the project is still building fine but is getting rejected by apple app analysis tools because it thinks we are trying to use a private api `rootView`. Just adding the files that define the selector makes it get accepted now. **Test plan** Tested that I'm now able to submit a build on testflight using this change. Closes facebook#15072 Differential Revision: D5444838 Pulled By: hramos fbshipit-source-id: a290ebd23c2510e103934a550d1b37899ce9c093
1 parent ca9202f commit 2a7bde0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

React/React.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@
204204
14F7A0F01BDA714B003C6C10 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F7A0EF1BDA714B003C6C10 /* RCTFPSGraph.m */; };
205205
191E3EBE1C29D9AF00C180A6 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 191E3EBD1C29D9AF00C180A6 /* RCTRefreshControlManager.m */; };
206206
191E3EC11C29DC3800C180A6 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 191E3EC01C29DC3800C180A6 /* RCTRefreshControl.m */; };
207+
19F0AD721F1DE7C400E4949F /* RCTShadowView+Hierarchy.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F0AD701F1DE7C400E4949F /* RCTShadowView+Hierarchy.h */; };
208+
19F0AD731F1DE7C400E4949F /* RCTShadowView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F0AD711F1DE7C400E4949F /* RCTShadowView+Hierarchy.m */; };
207209
19F61BFA1E8495CD00571D81 /* bignum-dtoa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 139D7E3A1E25C5A300323FB7 /* bignum-dtoa.h */; };
208210
19F61BFB1E8495CD00571D81 /* bignum.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 139D7E3C1E25C5A300323FB7 /* bignum.h */; };
209211
19F61BFC1E8495CD00571D81 /* cached-powers.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 139D7E3E1E25C5A300323FB7 /* cached-powers.h */; };
@@ -1831,6 +1833,8 @@
18311833
191E3EBF1C29DC3800C180A6 /* RCTRefreshControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; };
18321834
191E3EC01C29DC3800C180A6 /* RCTRefreshControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; };
18331835
19DED2281E77E29200F089BB /* systemJSCWrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemJSCWrapper.cpp; sourceTree = "<group>"; };
1836+
19F0AD701F1DE7C400E4949F /* RCTShadowView+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Hierarchy.h"; sourceTree = "<group>"; };
1837+
19F0AD711F1DE7C400E4949F /* RCTShadowView+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Hierarchy.m"; sourceTree = "<group>"; };
18341838
27B958731E57587D0096647A /* JSBigString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = "<group>"; };
18351839
2D2A28131D9B038B00D4039D /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
18361840
352DCFEE1D19F4C20056D623 /* RCTI18nUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; };
@@ -2310,6 +2314,8 @@
23102314
131B6AF31AF1093D00FFC3E0 /* RCTSegmentedControlManager.m */,
23112315
13E0674B1A70F44B002CDEE1 /* RCTShadowView.h */,
23122316
13E0674C1A70F44B002CDEE1 /* RCTShadowView.m */,
2317+
19F0AD701F1DE7C400E4949F /* RCTShadowView+Hierarchy.h */,
2318+
19F0AD711F1DE7C400E4949F /* RCTShadowView+Hierarchy.m */,
23132319
590D7BFB1EBD458B00D8A370 /* RCTShadowView+Layout.h */,
23142320
590D7BFC1EBD458B00D8A370 /* RCTShadowView+Layout.m */,
23152321
13AF20431AE707F8005F5298 /* RCTSlider.h */,
@@ -3117,6 +3123,7 @@
31173123
657734901EE8354A00A0E9EA /* RCTInspectorPackagerConnection.h in Headers */,
31183124
3D7BFD1D1EA8E351008DFB7A /* RCTPackagerConnection.h in Headers */,
31193125
3D80DA7F1DF820620028D040 /* RCTScrollView.h in Headers */,
3126+
19F0AD721F1DE7C400E4949F /* RCTShadowView+Hierarchy.h in Headers */,
31203127
3D80DA801DF820620028D040 /* RCTScrollViewManager.h in Headers */,
31213128
3D80DA811DF820620028D040 /* RCTSegmentedControl.h in Headers */,
31223129
C6827DF61EF17CCC00D66BEF /* RCTJSEnvironment.h in Headers */,
@@ -3875,6 +3882,7 @@
38753882
13B080261A694A8400A75B9A /* RCTWrapperViewController.m in Sources */,
38763883
13B080051A6947C200A75B9A /* RCTScrollView.m in Sources */,
38773884
A2440AA31DF8D854006E7BFC /* RCTReloadCommand.m in Sources */,
3885+
19F0AD731F1DE7C400E4949F /* RCTShadowView+Hierarchy.m in Sources */,
38783886
6577348F1EE8354A00A0E9EA /* RCTInspector.mm in Sources */,
38793887
E9B20B7B1B500126007A2DA7 /* RCTAccessibilityManager.m in Sources */,
38803888
13A0C2891B74F71200B29F6F /* RCTDevLoadingView.m in Sources */,

0 commit comments

Comments
 (0)