require_relative './podfile_helpers.rb' require_relative '../react-native-lab/react-native/scripts/react_native_pods' require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") install! 'cocoapods', :generate_multiple_pod_projects => true, :incremental_installation => true platform :ios, '12.4' inhibit_all_warnings! # Disable expo-updates auto create manifest in podspec script_phase $expo_updates_create_manifest = false abstract_target 'Expo Go' do # Expo Client dependencies pod 'Amplitude' pod 'CocoaLumberjack', '~> 3.5.3' pod 'GoogleMaps', '~> 3.6' pod 'Google-Maps-iOS-Utils', '~> 2.1.0' pod 'JKBigInteger', :podspec => 'vendored/common/JKBigInteger.podspec.json' pod 'MBProgressHUD', '~> 1.2.0' # Expo modules use_expo_modules!({ exclude: [ 'expo-module-template', 'expo-in-app-purchases', 'expo-dev-menu', 'expo-dev-menu-interface', 'expo-dev-launcher', 'expo-dev-client', ], # Modules for which to include Tests subspec tests: [ 'expo-eas-client', 'expo-modules-core', 'expo-updates', 'expo-manifests', 'expo-json-utils', 'expo-structured-headers', 'expo-clipboard', ], flags: { :inhibit_warnings => false } }) # Install vendored pods. use_pods! 'vendored/unversioned/**/*.podspec.json' # Unversioned React Native use_react_native! path: '../react-native-lab/react-native' # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and # RCT_ENABLE_PACKAGER_CONNECTION disabled post_install do |installer| # Workaround build error for Folly __apply_Xcode_12_5_M1_post_install_workaround(installer) if installer.pods_project # Disabled as of CocoaPods 1.8.0.beta1 since pods_project seems to be nil # installer.pods_project.main_group.tab_width = '2'; # installer.pods_project.main_group.indent_width = '2'; installer.target_installation_results.pod_target_installation_results .each do |pod_name, target_installation_result| # Run postinstalls actions for versioned dependencies. # These actions are specified in `versioned-react-native/ABI*/postinstalls.rb` files. run_versioned_postinstalls!(pod_name, target_installation_result) target_installation_result.native_target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' # Fix building failures on M1 config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64' end if pod_name == 'Branch' target_installation_result.native_target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'BRANCH_EXCLUDE_IDFA_CODE=1' end end if pod_name.end_with?('EXUpdates') target_installation_result.native_target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'SUPPRESS_EXPO_UPDATES_SERVICE=1' end end # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and # RCT_ENABLE_PACKAGER_CONNECTION disabled next unless pod_name.start_with?('React') target_installation_result.native_target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV=1' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_ENABLE_INSPECTOR=0' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV_SETTINGS_ENABLE_PACKAGER_CONNECTION=0' end end end # Target for development, contains only unversioned code target 'Expo Go (unversioned)' do end # Release target additionally includes versioned SDKs target 'Expo Go (versioned)' do # Evaluate all files matching `versioned-react-native/ABI*/dependencies.rb` glob pattern # and install ReactABIXX_0_0 pods with all versioned unimodules. use_versioned_abis! end # Test targets target 'ExponentIntegrationTests' do inherit! :search_paths end target 'Tests' do # `ExpoModulesTestCore` has implicit dependency to `React-Core` which has a resource bundle. # To prevent CocoaPods generating new `React-Core` resource bundle and the strange `React-Core-60309c9c` target, # this test target should inherit all properties from parents. inherit! :complete pod 'ExpoModulesTestCore', :path => "../packages/expo-modules-test-core/ios" pod 'Nimble', :podspec => './Nimble.podspec' end end