Created
March 22, 2019 22:35
-
-
Save littleV/d380d0a2c15ae2452e74f3e6deddcf1c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uncomment the next line to define a global platform for your project | |
# platform :ios, '9.0' | |
target 'FancyLibiOS' do | |
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks | |
# use_frameworks! | |
# Pods for FancyLibiOS | |
pod 'React', :path => '../../node_modules/react-native', :subspecs => [ | |
'Core', | |
'CxxBridge', # Include this for RN >= 0.47 | |
'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43 | |
'RCTText', | |
'RCTNetwork', | |
'RCTWebSocket', # Needed for debugging | |
'RCTAnimation', # Needed for FlatList and animations running on native UI thread | |
# Add any other subspecs you want to use in your project | |
] | |
# 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 | |
target 'FancyLibtvOS' do | |
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks | |
# use_frameworks! | |
# Pods for FancyLibtvOS | |
pod 'React', :path => '../../node_modules/react-native', :subspecs => [ | |
'Core', | |
'CxxBridge', # Include this for RN >= 0.47 | |
'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43 | |
'RCTText', | |
'RCTNetwork', | |
'RCTWebSocket', # Needed for debugging | |
'RCTAnimation', # Needed for FlatList and animations running on native UI thread | |
# Add any other subspecs you want to use in your project | |
] | |
# 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