Skip to content

Instantly share code, notes, and snippets.

@sjchmiela
Created March 12, 2019 12:03
Show Gist options
  • Save sjchmiela/6c079f2173938a9a61a7c6f053c45000 to your computer and use it in GitHub Desktop.
Save sjchmiela/6c079f2173938a9a61a7c6f053c45000 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
@sudomann
Copy link

sudomann commented Jan 8, 2020

@apostolou try these versions too, see how high you can go before the error occurs again ^0.7.0-rc.1 ^0.7.0-rc.2 ^0.7.0-rc.3 ^0.7.0-rc.4

@yuzhakovvv
Copy link

Have the same issues as @apostolou. 0.6.0 worked, but starting from 0.7.0-rc.1 have the same error as @nolife08021.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment