Files
deighton-ar/mobile/ios/Podfile
John Lyon-Smith 711fde0c6a Initial Podfile
2018-03-12 19:37:21 -07:00

29 lines
801 B
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'DeightonAR' 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',
'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',
'RCTGeolocation',
'RCTImage',
]
pod 'ReactNative'
target 'DeightonARTests' do
inherit! :search_paths
# Pods for testing
end
end