mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
80ccbdcfa0
Summary: Add's a podspec to allow linking / building turbomodules. [iOS] [Added] - podspec for turbomodules Pull Request resolved: https://github.com/facebook/react-native/pull/23927 Reviewed By: mdvacca, RSNara Differential Revision: D14474598 Pulled By: fkgozali fbshipit-source-id: afafce0f0af31469a3ef91616575b3b0f36055bc
43 lines
1.8 KiB
Ruby
43 lines
1.8 KiB
Ruby
platform :ios, '9.0'
|
|
|
|
target 'RNTester' do
|
|
# Uncomment for Swift
|
|
# use_frameworks!
|
|
|
|
project 'RNTesterPods.xcodeproj'
|
|
|
|
pod 'React', :path => '../'
|
|
pod 'React-ART', :path => '../Libraries/ART'
|
|
pod 'React-Core', :path => '../React'
|
|
pod 'React-DevSupport', :path => '../React'
|
|
pod 'React-fishhook', :path => '../Libraries/fishhook'
|
|
pod 'React-RCTActionSheet', :path => '../Libraries/ActionSheetIOS'
|
|
pod 'React-RCTAnimation', :path => '../Libraries/NativeAnimation'
|
|
pod 'React-RCTBlob', :path => '../Libraries/Blob'
|
|
pod 'React-RCTCameraRoll', :path => '../Libraries/CameraRoll'
|
|
pod 'React-RCTGeolocation', :path => '../Libraries/Geolocation'
|
|
pod 'React-RCTImage', :path => '../Libraries/Image'
|
|
pod 'React-RCTLinking', :path => '../Libraries/LinkingIOS'
|
|
pod 'React-RCTNetwork', :path => '../Libraries/Network'
|
|
pod 'React-RCTPushNotification', :path => '../Libraries/PushNotificationIOS'
|
|
pod 'React-RCTSettings', :path => '../Libraries/Settings'
|
|
pod 'React-RCTText', :path => '../Libraries/Text'
|
|
pod 'React-RCTVibration', :path => '../Libraries/Vibration'
|
|
pod 'React-RCTWebSocket', :path => '../Libraries/WebSocket'
|
|
|
|
pod 'React-cxxreact', :path => '../ReactCommon/cxxreact'
|
|
pod 'React-jsi', :path => '../ReactCommon/jsi'
|
|
pod 'React-jsiexecutor', :path => '../ReactCommon/jsiexecutor'
|
|
pod 'React-jsinspector', :path => '../ReactCommon/jsinspector'
|
|
pod 'yoga', :path => '../ReactCommon/yoga'
|
|
|
|
# Uncomment to enable TurboModule
|
|
# pod 'React-turbomodule-core', :path => '../ReactCommon/turbomodule/core'
|
|
|
|
# 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
|