mirror of
https://github.com/status-im/react-native.git
synced 2025-01-26 09:19:10 +00:00
e636eb60d7
Summary: This adds a way to test out CocoaPods build to RNTester, but as a separate project/workspace. This also fixes the podspecs due to Fabric stuffs. Note that this setup is meant to be run manually, not by CI (yet) Reviewed By: mmmulani Differential Revision: D7603823 fbshipit-source-id: 2219aa4c77f40ec07097a5c9ed4052529226618b
37 lines
795 B
Ruby
37 lines
795 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',
|
|
'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
|