xref: /expo/ios/Podfile (revision fa5bc561)
1require_relative './podfile_helpers.rb'
2require_relative '../react-native-lab/react-native/scripts/react_native_pods'
3require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
4
5install! 'cocoapods',
6         :generate_multiple_pod_projects => true,
7         :incremental_installation => true
8platform :ios, '12.0'
9inhibit_all_warnings!
10
11# Disable expo-updates auto create manifest in podspec script_phase
12$expo_updates_create_manifest = false
13
14abstract_target 'Expo Go' do
15  # Expo Client dependencies
16  pod 'Amplitude'
17  pod 'CocoaLumberjack', '~> 3.5.3'
18  pod 'GoogleMaps', '~> 3.6'
19  pod 'Google-Maps-iOS-Utils', '~> 2.1.0'
20  pod 'JKBigInteger', :podspec => 'vendored/common/JKBigInteger.podspec.json'
21  pod 'MBProgressHUD', '~> 1.2.0'
22
23  # Expo modules
24  use_expo_modules!({
25    exclude: [
26      'expo-module-template',
27      'expo-in-app-purchases',
28      'expo-dev-menu',
29      'expo-dev-menu-interface',
30      'expo-dev-launcher',
31      'expo-dev-client'
32    ],
33    # Modules for which to include Tests subspec
34    tests: [
35      'expo-eas-client',
36      'expo-modules-core',
37      'expo-updates',
38      'expo-manifests',
39      'expo-json-utils',
40      'expo-structured-headers',
41    ],
42    flags: {
43      :inhibit_warnings => false
44    }
45  })
46
47  # Install vendored pods.
48  use_pods! 'vendored/unversioned/**/*.podspec.json'
49
50  # Unversioned React Native
51  use_react_native! path: '../react-native-lab/react-native'
52
53  # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and
54  # RCT_ENABLE_PACKAGER_CONNECTION disabled
55  post_install do |installer|
56    # Workaround build error for Folly
57    __apply_Xcode_12_5_M1_post_install_workaround(installer) if installer.pods_project
58
59    # Disabled as of CocoaPods 1.8.0.beta1 since pods_project seems to be nil
60    # installer.pods_project.main_group.tab_width = '2';
61    # installer.pods_project.main_group.indent_width = '2';
62
63    installer.target_installation_results.pod_target_installation_results
64      .each do |pod_name, target_installation_result|
65
66      # Run postinstalls actions for versioned dependencies.
67      # These actions are specified in `versioned-react-native/ABI*/postinstalls.rb` files.
68      run_versioned_postinstalls!(pod_name, target_installation_result)
69
70      target_installation_result.native_target.build_configurations.each do |config|
71        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
72
73        # Fix building failures on M1
74        config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
75      end
76
77      if pod_name == 'Branch'
78        target_installation_result.native_target.build_configurations.each do |config|
79          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
80          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'BRANCH_EXCLUDE_IDFA_CODE=1'
81        end
82      end
83
84      # Build React Native with RCT_DEV enabled and RCT_ENABLE_INSPECTOR and
85      # RCT_ENABLE_PACKAGER_CONNECTION disabled
86      next unless pod_name.start_with?('React')
87      target_installation_result.native_target.build_configurations.each do |config|
88        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
89        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV=1'
90        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_ENABLE_INSPECTOR=0'
91        config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV_SETTINGS_ENABLE_PACKAGER_CONNECTION=0'
92      end
93    end
94  end
95
96  # Target for development, contains only unversioned code
97  target 'Expo Go (unversioned)' do
98  end
99
100  # Release target additionally includes versioned SDKs
101  target 'Expo Go (versioned)' do
102    # Evaluate all files matching `versioned-react-native/ABI*/dependencies.rb` glob pattern
103    # and install ReactABIXX_0_0 pods with all versioned unimodules.
104    use_versioned_abis!
105  end
106
107  # Test targets
108  target 'ExponentIntegrationTests' do
109    inherit! :search_paths
110  end
111
112  target 'Tests' do
113    # `ExpoModulesTestCore` has implicit dependency to `React-Core` which has a resource bundle.
114    # To prevent CocoaPods generating new `React-Core` resource bundle and the strange `React-Core-60309c9c` target,
115    # this test target should inherit all properties from parents.
116    inherit! :complete
117
118    pod 'ExpoModulesTestCore', :path => "../packages/expo-modules-test-core/ios"
119    pod 'Nimble', :podspec => './Nimble.podspec'
120  end
121end
122