Skip to content

Instantly share code, notes, and snippets.

@muhozi
Last active March 18, 2019 17:44
Show Gist options
  • Save muhozi/7129ad269badb671362e98fb55ebf1a8 to your computer and use it in GitHub Desktop.
Save muhozi/7129ad269badb671362e98fb55ebf1a8 to your computer and use it in GitHub Desktop.
RnFirebaseImgUpload Podfile
# The target name is most likely the name of your project.
platform :ios, '9.0'
target 'RnFirebaseImgUpload' do
rn_path = '../node_modules/react-native'
rn_maps_path = '../node_modules/react-native-maps'
# Your 'node_modules' directory is probably in the root of your project,
# but if not, adjust the `:path` accordingly
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTActionSheet',
'RCTAnimation',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket',
]
# Explicitly include Yoga if you are using RN >= 0.42.0
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
# Third party deps podspec link
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'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment