Skip to content

Commit 7dbb854

Browse files
committed
test(e2e): update to react-native 0.66.0-rc.4
Hopefully the last RC, should clean even more things up RC1 worked already so this should be low risk
1 parent 776b97a commit 7dbb854

File tree

4 files changed

+262
-252
lines changed

4 files changed

+262
-252
lines changed

tests/ios/Podfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,18 @@ target 'testing' do
4646
post_install do |installer|
4747
react_native_post_install(installer)
4848

49-
# This is needed for Apple Silicon (M1) builds https://github.com/facebook/react-native/issues/31941
5049
installer.aggregate_targets.each do |aggregate_target|
5150
aggregate_target.user_project.native_targets.each do |target|
5251
target.build_configurations.each do |config|
53-
config.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)']
52+
# Arch selection is needed to work across M1/Intel macs, became necessary when App Check was added
5453
config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES'
5554
config.build_settings['EXCLUDED_ARCHS'] = 'i386'
5655
end
5756
end
5857
aggregate_target.user_project.save
5958
end
59+
60+
# This is needed until react-native gets transitive dependencies fixed
6061
__apply_Xcode_12_5_M1_post_install_workaround(installer)
6162
end
6263
end

0 commit comments

Comments
 (0)