expo-template-bare-minimum 55.0.0-canary-20250919-7a31b96 → 55.0.0-canary-20250930-9dc59d3
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.
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
5
|
validateDistributionUrl=true
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|
package/android/gradlew
CHANGED
package/ios/Podfile
CHANGED
|
@@ -4,6 +4,14 @@ require File.join(File.dirname(`node --print "require.resolve('react-native/pack
|
|
|
4
4
|
require 'json'
|
|
5
5
|
podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
|
|
6
6
|
|
|
7
|
+
def ccache_enabled?(podfile_properties)
|
|
8
|
+
# Environment variable takes precedence
|
|
9
|
+
return ENV['USE_CCACHE'] == '1' if ENV['USE_CCACHE']
|
|
10
|
+
|
|
11
|
+
# Fall back to Podfile properties
|
|
12
|
+
podfile_properties['apple.ccacheEnabled'] == 'true'
|
|
13
|
+
end
|
|
14
|
+
|
|
7
15
|
ENV['RCT_NEW_ARCH_ENABLED'] ||= '0' if podfile_properties['newArchEnabled'] == 'false'
|
|
8
16
|
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] ||= podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
|
|
9
17
|
ENV['RCT_USE_RN_DEP'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true' && podfile_properties['newArchEnabled'] != 'false'
|
|
@@ -46,7 +54,7 @@ target 'HelloWorld' do
|
|
|
46
54
|
installer,
|
|
47
55
|
config[:reactNativePath],
|
|
48
56
|
:mac_catalyst_enabled => false,
|
|
49
|
-
:ccache_enabled => podfile_properties
|
|
57
|
+
:ccache_enabled => ccache_enabled?(podfile_properties),
|
|
50
58
|
)
|
|
51
59
|
end
|
|
52
60
|
end
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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
4
|
"license": "0BSD",
|
|
5
|
-
"version": "55.0.0-canary-
|
|
5
|
+
"version": "55.0.0-canary-20250930-9dc59d3",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "expo start --dev-client",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"web": "expo start --web"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"expo": "55.0.0-canary-
|
|
15
|
-
"expo-status-bar": "3.0.9-canary-
|
|
16
|
-
"react": "19.1.
|
|
17
|
-
"react-native": "0.
|
|
14
|
+
"expo": "55.0.0-canary-20250930-9dc59d3",
|
|
15
|
+
"expo-status-bar": "3.0.9-canary-20250930-9dc59d3",
|
|
16
|
+
"react": "19.1.1",
|
|
17
|
+
"react-native": "0.82.0-rc.4"
|
|
18
18
|
}
|
|
19
19
|
}
|