Last active
August 28, 2018 15:25
-
-
Save sjchmiela/cfc4fbd7c426ec4c2e333775f690f314 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| source 'https://github.com/CocoaPods/Specs.git' | |
| platform :ios, '9.0' | |
| target 'TestTheDetach' do | |
| pod 'ExpoKit', | |
| :git => "http://github.com/expo/expo.git", | |
| :tag => "ios/2.7.6", | |
| :subspecs => [ | |
| "Core" | |
| ], | |
| :inhibit_warnings => true | |
| pod 'EXGL', | |
| :path => "../node_modules/expo-gl/ios" | |
| pod 'EXSMS', | |
| :path => "../node_modules/expo-sms/ios" | |
| pod 'EXCore', | |
| :path => "../node_modules/expo-core/ios" | |
| # pod 'EXFont', | |
| # :path => "../node_modules/expo-font/ios" | |
| # pod 'EXPrint', | |
| # :path => "../node_modules/expo-print/ios" | |
| pod 'EXCamera', | |
| :path => "../node_modules/expo-camera/ios" | |
| pod 'EXSensors', | |
| :path => "../node_modules/expo-sensors/ios" | |
| # pod 'EXLocation', | |
| # :path => "../node_modules/expo-location/ios" | |
| pod 'EXConstants', | |
| :path => "../node_modules/expo-constants/ios" | |
| pod 'EXFileSystem', | |
| :path => "../node_modules/expo-file-system/ios" | |
| pod 'EXPermissions', | |
| :path => "../node_modules/expo-permissions/ios" | |
| # pod 'EXSegment', | |
| # :path => "../node_modules/expo-analytics-segment/ios" | |
| # pod 'EXMediaLibrary', | |
| # :path => "../node_modules/expo-media-library/ios" | |
| # pod 'EXFontInterface', | |
| # :path => "../node_modules/expo-font-interface/ios" | |
| pod 'EXCameraInterface', | |
| :path => "../node_modules/expo-camera-interface/ios" | |
| pod 'EXSensorsInterface', | |
| :path => "../node_modules/expo-sensors-interface/ios" | |
| pod 'EXConstantsInterface', | |
| :path => "../node_modules/expo-constants-interface/ios" | |
| pod 'EXReactNativeAdapter', | |
| :path => "../node_modules/expo-react-native-adapter/ios" | |
| pod 'EXFileSystemInterface', | |
| :path => "../node_modules/expo-file-system-interface/ios" | |
| pod 'EXPermissionsInterface', | |
| :path => "../node_modules/expo-permissions-interface/ios" | |
| # pod 'EXImageLoaderInterface', | |
| # :path => "../node_modules/expo-image-loader-interface/ios" | |
| pod 'EXFaceDetectorInterface', | |
| :path => "../node_modules/expo-face-detector-interface/ios" | |
| # pod 'EXBarCodeScannerInterface', | |
| # :path => "../node_modules/expo-barcode-scanner-interface/ios" | |
| # pod 'EXBarCodeScanner', | |
| # :path => "../node_modules/expo-barcode-scanner/ios" | |
| pod 'EXGL-CPP', | |
| :path => "../node_modules/expo-gl-cpp/cpp" | |
| pod 'React', | |
| :path => "../node_modules/react-native", | |
| :inhibit_warnings => true, | |
| :subspecs => [ | |
| "Core", | |
| "ART", | |
| "RCTActionSheet", | |
| "RCTAnimation", | |
| "RCTCameraRoll", | |
| "RCTGeolocation", | |
| "RCTImage", | |
| "RCTNetwork", | |
| "RCTText", | |
| "RCTVibration", | |
| "RCTWebSocket", | |
| "DevSupport", | |
| "CxxBridge" | |
| ] | |
| pod 'yoga', | |
| :path => "../node_modules/react-native/ReactCommon/yoga", | |
| :inhibit_warnings => true | |
| pod 'DoubleConversion', | |
| :podspec => "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec", | |
| :inhibit_warnings => true | |
| pod 'Folly', | |
| :podspec => "../node_modules/react-native/third-party-podspecs/Folly.podspec", | |
| :inhibit_warnings => true | |
| pod 'glog', | |
| :podspec => "../node_modules/react-native/third-party-podspecs/glog.podspec", | |
| :inhibit_warnings => true | |
| post_install do |installer| | |
| installer.pods_project.main_group.tab_width = '2'; | |
| installer.pods_project.main_group.indent_width = '2'; | |
| installer.pod_targets.each do |target| | |
| if target.pod_name == 'ExpoKit' | |
| target.native_target.build_configurations.each do |config| | |
| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] | |
| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'EX_DETACHED=1' | |
| # needed for GoogleMaps 2.x | |
| config.build_settings['FRAMEWORK_SEARCH_PATHS'] ||= [] | |
| config.build_settings['FRAMEWORK_SEARCH_PATHS'] << '${PODS_ROOT}/GoogleMaps/Base/Frameworks' | |
| config.build_settings['FRAMEWORK_SEARCH_PATHS'] << '${PODS_ROOT}/GoogleMaps/Maps/Frameworks' | |
| end | |
| end | |
| if ['Amplitude-iOS','Analytics','AppAuth','Branch','CocoaLumberjack','FBSDKCoreKit','FBSDKLoginKit','FBSDKShareKit','GPUImage','JKBigInteger2'].include? target.pod_name | |
| target.native_target.build_configurations.each do |config| | |
| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0' | |
| end | |
| end | |
| # Can't specify this in the React podspec because we need | |
| # to use those podspecs for detached projects which don't reference ExponentCPP. | |
| if target.pod_name.start_with?('React') | |
| target.native_target.build_configurations.each do |config| | |
| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0' | |
| config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)'] | |
| end | |
| end | |
| # Build React Native with RCT_DEV enabled | |
| next unless target.pod_name == 'React' | |
| target.native_target.build_configurations.each do |config| | |
| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] | |
| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV=1' | |
| end | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment