-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
168 lines (142 loc) · 6.45 KB
/
Copy pathPodfile
File metadata and controls
168 lines (142 loc) · 6.45 KB
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
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'
ENV['RCT_HERMES_V1_ENABLED'] = '1'
# Build Expo Go from Expo's fork of React Native
ENV['RCT_USE_RN_DEP'] = '0'
ENV['RCT_USE_PREBUILT_RNCORE'] = '0'
install! 'cocoapods',
:generate_multiple_pod_projects => true,
:incremental_installation => true
platform :ios, '16.4'
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 'MBProgressHUD', '~> 1.2.0'
# Required by react-native-maps
# See https://github.com/react-native-maps/react-native-maps/blob/master/docs/installation.md
pod 'react-native-maps/Maps', :path => File.dirname(`node --print "require('path').relative(process.cwd(), require.resolve('react-native-maps/package.json'))"
`.strip)
# 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', '~> 11.11.0', :modular_headers => true
pod 'FirebaseCoreExtension', '~> 11.11.0', :modular_headers => true
pod 'FirebaseAnalytics', '~> 11.11.0', :modular_headers => true
pod 'FirebaseCrashlytics', '~> 11.11.0', :modular_headers => true
pod 'FirebaseInstallations', '~> 11.11.0', :modular_headers => true
pod 'FirebaseRemoteConfigInterop', '~> 11.11.0', :modular_headers => true
pod 'nanopb', :modular_headers => true
pod 'GoogleUtilities', :modular_headers => true
pod 'GoogleDataTransport', :modular_headers => true
# Expo modules
use_expo_modules!({
exclude: [
'expo-app-metrics',
'expo-module-template',
'expo-dev-launcher',
'expo-dev-client',
'expo-dev-menu',
'expo-dev-menu-interface',
'expo-maps',
'expo-network-addons',
'expo-insights',
'expo-splash-screen',
'@expo/app-integrity',
'expo-brownfield',
'expo-widgets',
'expo-observe'
],
includeTests: true,
flags: {
:inhibit_warnings => false
}
})
# Install vendored pods.
use_pods! 'vendored/unversioned/**/*.podspec.json'
config_command = [
'node',
'--no-warnings',
'--eval',
'require(\'expo/bin/autolinking\')',
'expo-modules-autolinking',
'react-native-config',
'--json',
'--platform',
'ios'
]
config = use_native_modules!(config_command)
react_native_path = '../../../react-native-lab/react-native/packages/react-native'
use_react_native!(
:path => react_native_path,
:hermes_enabled => true,
)
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,
react_native_path,
:mac_catalyst_enabled => false,
:ccache_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 ['React-hermes', 'hermes-engine', 'React-RuntimeHermes'].include?(pod_name)
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"
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << "HERMES_V1_ENABLED=1"
end
end
if ['React-jsinspector', 'React-RCTNetwork'].include?(pod_name)
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << "REACT_NATIVE_DEBUGGER_ENABLED=1"
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << "REACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=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_path)
end
target_installation_result.native_target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.4'
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
target 'Tests' do
pod 'ExpoModulesTestCore', :path => "../../../packages/expo-modules-test-core/ios"
end
end