11# Uncomment the next line to define a global platform for your project
2- platform :ios , '9.0'
2+ platform :ios , '10.0'
3+ require_relative '../node_modules/react-native/scripts/react_native_pods'
34require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
45
56target 'ReactNativeStarter' do
67 # Comment the next line if you don't want to use dynamic frameworks
78 # use_frameworks!
89
9- # Pods for ReactNativeStarter
10- pod 'FBLazyVector' , :path => "../node_modules/react-native/Libraries/FBLazyVector"
11- pod 'FBReactNativeSpec' , :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
12- pod 'RCTRequired' , :path => "../node_modules/react-native/Libraries/RCTRequired"
13- pod 'RCTTypeSafety' , :path => "../node_modules/react-native/Libraries/TypeSafety"
14- pod 'React' , :path => '../node_modules/react-native/'
15- pod 'React-Core' , :path => '../node_modules/react-native/'
16- pod 'React-CoreModules' , :path => '../node_modules/react-native/React/CoreModules'
17- pod 'React-Core/DevSupport' , :path => '../node_modules/react-native/'
18- pod 'React-RCTActionSheet' , :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
19- pod 'React-RCTAnimation' , :path => '../node_modules/react-native/Libraries/NativeAnimation'
20- pod 'React-RCTBlob' , :path => '../node_modules/react-native/Libraries/Blob'
21- pod 'React-RCTImage' , :path => '../node_modules/react-native/Libraries/Image'
22- pod 'React-RCTLinking' , :path => '../node_modules/react-native/Libraries/LinkingIOS'
23- pod 'React-RCTNetwork' , :path => '../node_modules/react-native/Libraries/Network'
24- pod 'React-RCTSettings' , :path => '../node_modules/react-native/Libraries/Settings'
25- pod 'React-RCTText' , :path => '../node_modules/react-native/Libraries/Text'
26- pod 'React-RCTVibration' , :path => '../node_modules/react-native/Libraries/Vibration'
27- pod 'React-Core/RCTWebSocket' , :path => '../node_modules/react-native/'
28-
29-
30- pod 'React-cxxreact' , :path => '../node_modules/react-native/ReactCommon/cxxreact'
31- pod 'React-jsi' , :path => '../node_modules/react-native/ReactCommon/jsi'
32- pod 'React-jsiexecutor' , :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
33- pod 'React-jsinspector' , :path => '../node_modules/react-native/ReactCommon/jsinspector'
34- pod 'ReactCommon/jscallinvoker' , :path => "../node_modules/react-native/ReactCommon"
35- pod 'ReactCommon/turbomodule/core' , :path => "../node_modules/react-native/ReactCommon"
36- pod 'Yoga' , :path => '../node_modules/react-native/ReactCommon/yoga'
37-
38- pod 'DoubleConversion' , :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
39- pod 'glog' , :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
40- pod 'Folly' , :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
10+ config = use_native_modules!
11+ use_react_native! ( :path => config [ "reactNativePath" ] )
4112
4213 target 'ReactNativeStarterTests' do
4314 inherit! :search_paths
@@ -51,4 +22,4 @@ target 'ReactNativeStarter-tvOS' do
5122 inherit! :search_paths
5223 # Pods for testing
5324 end
54- end
25+ end
0 commit comments