Initial Podfile

This commit is contained in:
John Lyon-Smith
2018-03-12 19:35:16 -07:00
parent e7aaa014ff
commit 711fde0c6a

28
mobile/ios/Podfile Normal file
View File

@@ -0,0 +1,28 @@
# 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