mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 19:44:13 +00:00
0afc70b24a
Summary: Each app has its own set of components to support, so this mechanism allows each of them to customize the set. Core library only provides the signature (.h file) without any impl. Reviewed By: shergin Differential Revision: D8065360 fbshipit-source-id: c123397afda678e84f1d1fa41a6393f25b2c15e1
39 lines
875 B
Ruby
39 lines
875 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',
|
|
'RCTFabricSample', # This is RNTesterPods specific sample.
|
|
'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
|