mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-16 14:49:58 +08:00
Summary: This sets up RCTSampleTurboModule (and other variants) in RNTester when built with cocoapods. There's no call site yet though. And RNTester.xcodeproj doesn't support it. Reviewed By: cpojer Differential Revision: D14932535 fbshipit-source-id: db8eafd6777cbec8f3592dafdccbdd7cf44e38bc
49 lines
2.1 KiB
Ruby
49 lines
2.1 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-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'
|
|
|
|
# Fabric Pods, uncomment these to enable in RNTester
|
|
# pod 'React-Fabric', :path => '../ReactCommon'
|
|
# pod 'React-graphics', :path => '../ReactCommon/fabric/graphics'
|
|
# pod 'React-jsi/Fabric', :path => '../ReactCommon/jsi'
|
|
# pod 'React-RCTFabric', :path => '../React'
|
|
# pod 'Folly/Fabric', :podspec => '../third-party-podspecs/Folly.podspec'
|
|
|
|
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'
|
|
|
|
pod 'React-turbomodule-core', :path => '../ReactCommon/turbomodule/core'
|
|
pod 'React-turbomodule-samples', :path => '../ReactCommon/turbomodule/samples'
|
|
|
|
# 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
|