Skip to content

Instantly share code, notes, and snippets.

@matteocollina
Created March 29, 2018 21:40
Show Gist options
  • Save matteocollina/3604bfde1858f5407e299f75bc72d7a4 to your computer and use it in GitHub Desktop.
Save matteocollina/3604bfde1858f5407e299f75bc72d7a4 to your computer and use it in GitHub Desktop.
Podfile to install react dependencies
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'StoryReact' do
use_frameworks!
pod 'React', :path => './js/node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
]
pod 'yoga', :path => './js/node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => './js/node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'GLog', :podspec => './js/node_modules/react-native/third-party-podspecs/GLog.podspec'
pod 'Folly', :podspec => './js/node_modules/react-native/third-party-podspecs/Folly.podspec'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment