expo-template-bare-minimum 51.0.15 → 51.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/Podfile +5 -1
- package/package.json +2 -2
package/ios/Podfile
CHANGED
|
@@ -25,13 +25,17 @@ target 'HelloWorld' do
|
|
|
25
25
|
:hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
|
|
26
26
|
# An absolute path to your application root.
|
|
27
27
|
:app_path => "#{Pod::Config.instance.installation_root}/..",
|
|
28
|
+
# Temporarily disable privacy file aggregation by default, until React
|
|
29
|
+
# Native 0.74.2 is released with fixes.
|
|
30
|
+
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] == 'true',
|
|
28
31
|
)
|
|
29
32
|
|
|
30
33
|
post_install do |installer|
|
|
31
34
|
react_native_post_install(
|
|
32
35
|
installer,
|
|
33
36
|
config[:reactNativePath],
|
|
34
|
-
:mac_catalyst_enabled => false
|
|
37
|
+
:mac_catalyst_enabled => false,
|
|
38
|
+
:ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
|
|
35
39
|
)
|
|
36
40
|
|
|
37
41
|
# This is necessary for Xcode 14, because it signs resource bundles by default
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-template-bare-minimum",
|
|
3
3
|
"description": "This bare project template includes a minimal setup for using unimodules with React Native.",
|
|
4
|
-
"version": "51.0.
|
|
4
|
+
"version": "51.0.17",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"start": "expo start --dev-client",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"web": "expo start --web"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"expo": "~51.0.0
|
|
13
|
+
"expo": "~51.0.0",
|
|
14
14
|
"expo-status-bar": "~1.12.1",
|
|
15
15
|
"react": "18.2.0",
|
|
16
16
|
"react-native": "0.74.1"
|