Skip to content

Commit d90b869

Browse files
rebuild test ios app folder
1 parent 8226d1e commit d90b869

File tree

16 files changed

+374
-410
lines changed

16 files changed

+374
-410
lines changed

tests/ios/Podfile

+4-11
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties
77
ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0'
88
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
99

10-
platform :ios, podfile_properties['ios.deploymentTarget'] || '16.0'
10+
platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
1111
install! 'cocoapods',
1212
:deterministic_uuids => false
1313

1414
prepare_react_native_project!
15-
use_modular_headers!
1615

1716
target 'tests' do
1817
use_expo_modules!
@@ -42,13 +41,15 @@ target 'tests' do
4241
:hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
4342
# An absolute path to your application root.
4443
:app_path => "#{Pod::Config.instance.installation_root}/..",
44+
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false',
4545
)
4646

4747
post_install do |installer|
4848
react_native_post_install(
4949
installer,
5050
config[:reactNativePath],
51-
:mac_catalyst_enabled => false
51+
:mac_catalyst_enabled => false,
52+
:ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
5253
)
5354

5455
# This is necessary for Xcode 14, because it signs resource bundles by default
@@ -62,12 +63,4 @@ target 'tests' do
6263
end
6364
end
6465
end
65-
66-
post_integrate do |installer|
67-
begin
68-
expo_patch_react_imports!(installer)
69-
rescue => e
70-
Pod::UI.warn e
71-
end
72-
end
7366
end

0 commit comments

Comments
 (0)