From 711fde0c6ad005a587599ea789a0381f63b883ec Mon Sep 17 00:00:00 2001 From: John Lyon-Smith Date: Mon, 12 Mar 2018 19:35:16 -0700 Subject: [PATCH] Initial Podfile --- mobile/ios/Podfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 mobile/ios/Podfile diff --git a/mobile/ios/Podfile b/mobile/ios/Podfile new file mode 100644 index 0000000..db9da28 --- /dev/null +++ b/mobile/ios/Podfile @@ -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