mirror of
https://github.com/status-im/react-native.git
synced 2025-01-11 01:56:26 +00:00
d5cfda51c4
Summary: There are new patterns that require some upgrades to Folly version we're using for the cocoapods/gradle. Until the upgrade happens, Fabric target doesn't need to be included in the normal RNTester podfile (it was there for sanity build check). Reviewed By: shergin Differential Revision: D8151782 fbshipit-source-id: 8d83355d65b1eeeab865585f2ae75ac835bdf826
42 lines
1018 B
Ruby
42 lines
1018 B
Ruby
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
|