forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
171 lines (146 loc) · 6.54 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
require_relative './podfile_helpers.rb'
require_relative '../../../react-native-lab/react-native/packages/react-native/scripts/react_native_pods'
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
ENV['RCT_NEW_ARCH_ENABLED'] = '1'
install! 'cocoapods',
:generate_multiple_pod_projects => true,
:incremental_installation => true
platform :ios, '15.1'
install! 'cocoapods',
:deterministic_uuids => false
inhibit_all_warnings!
# Disable expo-updates auto create updates resources in podspec script_phase
$expo_updates_create_updates_resources = false
prepare_react_native_project!
target 'Expo Go' do
pod 'CocoaLumberjack', '~> 3.5.3'
pod 'GoogleMaps', '~> 9.0'
pod 'Google-Maps-iOS-Utils', :git => 'https://github.com/googlemaps/google-maps-ios-utils.git'
pod 'JKBigInteger', :podspec => 'vendored/common/JKBigInteger.podspec.json'
pod 'MBProgressHUD', '~> 1.2.0'
# transitive dependency of React-Core and we use it to get the `RCTInspectorPackagerConnection` state
pod 'SocketRocket'
# Required by firebase core versions 9.x / 10.x (included with SDK 47)
# 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!({
searchPaths: [
'../../../packages'
],
exclude: [
'expo-module-template',
'expo-module-template-local',
'expo-dev-menu',
'expo-dev-menu-interface',
'expo-dev-launcher',
'expo-dev-client',
'expo-maps',
'expo-network-addons',
'expo-insights',
'expo-face-detector',
'expo-splash-screen',
],
includeTests: true,
flags: {
:inhibit_warnings => false
}
})
# Install vendored pods.
use_pods! 'vendored/unversioned/**/*.podspec.json'
config_command = [
'node',
'--no-warnings',
'--eval',
'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))',
'react-native-config',
'--json',
'--platform',
'ios'
]
config = use_native_modules!(config_command)
use_react_native!(
:path => '../../../react-native-lab/react-native/packages/react-native',
:hermes_enabled => true,
)
setup_jsc!(
:react_native_path => '../../../react-native-lab/react-native/packages/react-native',
)
post_install do |installer|
# `installer.pods_project` might be nil for `incremental_installation: true` and no new project generated
if installer.pods_project
react_native_post_install(
installer,
config[:reactNativePath],
:mac_catalyst_enabled => false
)
end
# 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|
# Enable hermes debugger even on release builds
if pod_name == 'React-hermes' || pod_name == 'hermes-engine'
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << "HERMES_ENABLE_DEBUGGER=1"
end
end
# Set `REACT_NATIVE_PATH` to react-native submodule
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings["REACT_NATIVE_PATH"] = File.join("${PODS_ROOT}", "..", '../../../react-native-lab/react-native/packages/react-native')
end
# 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'] = '15.1'
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
# On iOS, the Stripe dependency StripePaymentsUI can't seem to find a header that should be there.
if pod_name == 'StripePaymentsUI'
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)']
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_ROOT)/Headers/Public/StripePayments"'
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_REMOTE_PROFILE=0'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'RCT_DEV_SETTINGS_ENABLE_PACKAGER_CONNECTION=0'
end
end
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"
end
end