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.
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
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
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  #
4
- # Copyright © 2015-2021 the original authors.
4
+ # Copyright © 2015 the original authors.
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
7
7
  # you may not use this file except in compliance with the License.
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['apple.ccacheEnabled'] == 'true',
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-20250919-7a31b96",
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-20250919-7a31b96",
15
- "expo-status-bar": "3.0.9-canary-20250919-7a31b96",
16
- "react": "19.1.0",
17
- "react-native": "0.81.4"
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
  }