forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
41 lines (34 loc) · 1018 Bytes
/
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
39
40
41
platform :ios, '9.0'
target 'RNTester' do
# Uncomment for Swift
# use_frameworks!
project 'RNTesterPods.xcodeproj'
pod 'React', :path => '../', :subspecs => [
'ART',
'Core',
'CxxBridge',
'DevSupport',
'RCTActionSheet',
'RCTAnimation',
'RCTBlob',
'RCTCameraRoll',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTPushNotification',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket',
# Below this line is Fabric (experimental) specific.
# Currently they are disabled due to missing pre-reqs, e.g. upgrading Folly.
# 'RCTFabric',
# 'RCTFabricSample', # This is RNTesterPods specific sample.
]
pod 'yoga', :path => '../ReactCommon/yoga'
# Third party deps podspec link
pod 'DoubleConversion', :podspec => '../third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../third-party-podspecs/Folly.podspec'
end