Skip to content

Commit

Permalink
👷 adding DoubleConversion to Podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rastapasta committed Mar 26, 2018
1 parent 6088437 commit 44a8909
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 419 deletions.
20 changes: 8 additions & 12 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ platform :ios, '8.0'
source 'https://github.com/CocoaPods/Specs.git'

target 'example' do
react_native_path = "../node_modules/react-native"
pod "Yoga", :path => "#{react_native_path}/ReactCommon/yoga"
react_native_path = '../node_modules/react-native'
third_party_path = react_native_path+'/third-party-podspecs'

pod 'Yoga', :path => "#{react_native_path}/ReactCommon/yoga"
pod 'React', :path => react_native_path, :subspecs => [
'CxxBridge',
'Core',
Expand All @@ -23,15 +25,9 @@ target 'example' do
'RCTVibration',
'RCTWebSocket',
]
pod "RNGLModelView", :path => "../.."

pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'GLog', :podspec => '../node_modules/react-native/third-party-podspecs/GLog.podspec'
pod 'RNGLModelView', :path => '../..'

# use_frameworks!
# [
# 'GoogleMaps'
# ].each do |lib|
# pod lib
# end
pod 'Folly', :podspec => "#{third_party_path}/Folly.podspec"
pod 'GLog', :podspec => "#{third_party_path}/GLog.podspec"
pod 'DoubleConversion', :podspec => "#{third_party_path}/DoubleConversion.podspec"
end
Loading

0 comments on commit 44a8909

Please sign in to comment.