32 lines
918 B
Plaintext
32 lines
918 B
Plaintext
source 'https://github.com/CocoaPods/Specs.git'
|
|
# platform :ios, '9.0'
|
|
|
|
target 'None' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
# 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',
|
|
'RCTText',
|
|
'RCTNetwork',
|
|
'BatchedBridge',
|
|
'RCTImage',
|
|
'RCTWebSocket', # needed for debugging
|
|
# 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"
|
|
|
|
# test should point to this line
|
|
target 'NoneTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
target 'NoneUITests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
end |