expo-template-bare-minimum 53.0.12 → 53.0.14

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 +1 @@
1
- 5d028ea98616dae8eb2e417ae1be211a9ad9fee0283679997344372e7a520dec
1
+ 575f3c2aa0aad49972df25f768c8710ee4e850b04feef86450f4dbfa7f29655b
@@ -1 +1 @@
1
- 1c865220c1bb3c5ac981d9297b91547b33da4402ca777f096d3edb89ea4bbacb
1
+ 12ee7b9714a834f217075ac1a3b8bf449f10e8106cf744308de505ab2ab7b3b
@@ -1,5 +1,6 @@
1
- import React
2
1
  import Expo
2
+ import React
3
+ import ReactAppDependencyProvider
3
4
 
4
5
  @UIApplicationMain
5
6
  public class AppDelegate: ExpoAppDelegate {
@@ -10,15 +11,14 @@ public class AppDelegate: ExpoAppDelegate {
10
11
  self.moduleName = "main"
11
12
  self.initialProps = [:]
12
13
 
13
- return super.application(application, didFinishLaunchingWithOptions: launchOptions)
14
- }
14
+ let delegate = ReactNativeDelegate()
15
+ let factory = ExpoReactNativeFactory(delegate: delegate)
16
+ delegate.dependencyProvider = RCTAppDependencyProvider()
15
17
 
16
- public override func bundleURL() -> URL? {
17
- #if DEBUG
18
- return RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: ".expo/.virtual-metro-entry")
19
- #else
20
- return Bundle.main.url(forResource: "main", withExtension: "jsbundle")
21
- #endif
18
+ reactNativeFactoryDelegate = delegate
19
+ reactNativeFactory = factory
20
+
21
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
22
22
  }
23
23
 
24
24
  // Linking API
@@ -40,3 +40,7 @@ public class AppDelegate: ExpoAppDelegate {
40
40
  return super.application(application, continue: userActivity, restorationHandler: restorationHandler) || result
41
41
  }
42
42
  }
43
+
44
+ class ReactNativeDelegate: ExpoReactNativeFactoryDelegate {
45
+ // Extension point for config-plugins
46
+ }
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": "53.0.12",
5
+ "version": "53.0.14",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "start": "expo start --dev-client",
@@ -11,7 +11,7 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "expo": "~53.0.0-preview.8",
14
+ "expo": "~53.0.0-preview.11",
15
15
  "expo-status-bar": "~2.2.1",
16
16
  "react": "19.0.0",
17
17
  "react-native": "0.79.1"