Skip to content

Instantly share code, notes, and snippets.

@lucianomlima
Forked from sjchmiela/Podfile
Created September 24, 2019 18:04
Show Gist options
  • Save lucianomlima/f8b902c7636538eefaea73837d03477a to your computer and use it in GitHub Desktop.
Save lucianomlima/f8b902c7636538eefaea73837d03477a to your computer and use it in GitHub Desktop.
platform :ios, '10.0'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
# don't just copy and paste this, notice that the target names should align with what is already in your Podfile
target 'YourAppNameHere' do
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
'RCTAnimation',
'RCTImage',
]
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
use_unimodules!
target 'YourAppNameHereTests' do
inherit! :search_paths
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment