forked from lelandrichardson/native-navigation-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPodfile
38 lines (30 loc) · 1.33 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
react_native_path = '../node_modules/react-native'
target 'ReactNativeStarter' do
# Native Navigation uses Swift, so this line is required!
use_frameworks!
# Native Navigation!
pod 'native-navigation', :path => '../node_modules/native-navigation'
# To use CocoaPods with React Native, you need to add this specific Yoga spec as well
pod 'Yoga', :path => react_native_path + '/ReactCommon/yoga'
# Third party deps
pod 'DoubleConversion', :podspec => react_native_path + '/third-party-podspecs/DoubleConversion.podspec'
pod 'GLog', :podspec => react_native_path + '/third-party-podspecs/GLog.podspec'
pod 'Folly', :podspec => react_native_path + '/third-party-podspecs/Folly.podspec'
# You don't necessarily need all of these subspecs, but this would be a typical setup.
pod 'React', :path => react_native_path, :subspecs => [
'Core',
'CxxBridge',
'RCTText',
'RCTNetwork',
'RCTWebSocket', # needed for debugging
'RCTImage',
'RCTNetwork',
# Add any other subspecs you want to use in your project
'DevSupport'
]
# This isn't expected to happen, but it helps smoke out some
# CocoaPods issues. See https://github.com/facebook/react-native/issues/14326
pod 'KSCrash'
# Add any other dependencies here, including any 3rd party native libraries that you depend on for
# React Native.
end