-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
137 lines (115 loc) · 5.18 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
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, '13.0'
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', '~> 7.1'
pod 'Google-Maps-iOS-Utils', '~> 4.1.0'
pod 'JKBigInteger', :podspec => 'vendored/common/JKBigInteger.podspec.json'
pod 'MBProgressHUD', '~> 1.2.0'
# Required by latest firebase versions
# See https://github.com/invertase/react-native-firebase/issues/6332#issuecomment-1189734581
pod 'FirebaseCore', :modular_headers => true
pod 'GoogleUtilities', :modular_headers => true
# 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',
'expo-image',
],
includeTests: true,
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',
:hermes_enabled => true,
:fabric_enabled => false,
)
# 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)
# This is necessary for Xcode 14 that by default signs resource bundles when building for the device.
target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
resource_bundle_target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.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