@@ -7,12 +7,11 @@ podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties
7
7
ENV [ 'RCT_NEW_ARCH_ENABLED' ] = podfile_properties [ 'newArchEnabled' ] == 'true' ? '1' : '0'
8
8
ENV [ 'EX_DEV_CLIENT_NETWORK_INSPECTOR' ] = podfile_properties [ 'EX_DEV_CLIENT_NETWORK_INSPECTOR' ]
9
9
10
- platform :ios , podfile_properties [ 'ios.deploymentTarget' ] || '16.0 '
10
+ platform :ios , podfile_properties [ 'ios.deploymentTarget' ] || '15.1 '
11
11
install! 'cocoapods' ,
12
12
:deterministic_uuids => false
13
13
14
14
prepare_react_native_project!
15
- use_modular_headers!
16
15
17
16
target 'tests' do
18
17
use_expo_modules!
@@ -42,13 +41,15 @@ target 'tests' do
42
41
:hermes_enabled => podfile_properties [ 'expo.jsEngine' ] == nil || podfile_properties [ 'expo.jsEngine' ] == 'hermes' ,
43
42
# An absolute path to your application root.
44
43
:app_path => "#{ Pod ::Config . instance . installation_root } /.." ,
44
+ :privacy_file_aggregation_enabled => podfile_properties [ 'apple.privacyManifestAggregationEnabled' ] != 'false' ,
45
45
)
46
46
47
47
post_install do |installer |
48
48
react_native_post_install (
49
49
installer ,
50
50
config [ :reactNativePath ] ,
51
- :mac_catalyst_enabled => false
51
+ :mac_catalyst_enabled => false ,
52
+ :ccache_enabled => podfile_properties [ 'apple.ccacheEnabled' ] == 'true' ,
52
53
)
53
54
54
55
# This is necessary for Xcode 14, because it signs resource bundles by default
@@ -62,12 +63,4 @@ target 'tests' do
62
63
end
63
64
end
64
65
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
73
66
end
0 commit comments