mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
2299d4cd7c
Summary: Initial attempt to make fabric stuffs built properly with CocoaPods + RNTesterPods project. This simply includes fabric libs to the build, it doesn't change any behavior or enable fabric runtime. Reviewed By: shergin Differential Revision: D7626038 fbshipit-source-id: 4a80e0066cffa4478bb442fa8aefeaee6ff56ddd
38 lines
812 B
Ruby
38 lines
812 B
Ruby
platform :ios, '8.0'
|
|
|
|
target 'RNTester' do
|
|
# Uncomment for Swift
|
|
# use_frameworks!
|
|
|
|
project 'RNTesterPods.xcodeproj'
|
|
|
|
pod 'React', :path => '../', :subspecs => [
|
|
'ART',
|
|
'Core',
|
|
'CxxBridge',
|
|
'DevSupport',
|
|
'RCTActionSheet',
|
|
'RCTAnimation',
|
|
'RCTBlob',
|
|
'RCTCameraRoll',
|
|
'RCTFabric',
|
|
'RCTGeolocation',
|
|
'RCTImage',
|
|
'RCTLinkingIOS',
|
|
'RCTNetwork',
|
|
'RCTPushNotification',
|
|
'RCTSettings',
|
|
'RCTText',
|
|
'RCTVibration',
|
|
'RCTWebSocket',
|
|
]
|
|
|
|
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
|