expo-dev-launcher 5.1.7 → 5.1.8

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/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.1.8 — 2025-04-28
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 5.1.7 — 2025-04-28
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -8,13 +8,13 @@ expoModule {
8
8
  }
9
9
 
10
10
  group = "host.exp.exponent"
11
- version = "5.1.7"
11
+ version = "5.1.8"
12
12
 
13
13
  android {
14
14
  namespace "expo.modules.devlauncher"
15
15
  defaultConfig {
16
16
  versionCode 9
17
- versionName "5.1.7"
17
+ versionName "5.1.8"
18
18
  }
19
19
 
20
20
  buildTypes {
@@ -54,7 +54,7 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
54
54
  ((UIApplication.shared.delegate as? NSObject)?.value(forKey: "_expoAppDelegate") as? (any ReactNativeFactoryProvider)) else {
55
55
  fatalError("`UIApplication.shared.delegate` must be an `ExpoAppDelegate` or `EXAppDelegateWrapper`")
56
56
  }
57
- self.reactNativeFactory = appDelegate.reactNativeFactory as? RCTReactNativeFactory
57
+ self.reactNativeFactory = appDelegate.factory as? RCTReactNativeFactory
58
58
 
59
59
  // Reset rctAppDelegate so we can relaunch the app
60
60
  if self.reactNativeFactory?.delegate?.newArchEnabled() ?? false {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "5.1.7",
4
+ "version": "5.1.8",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "main": "build/DevLauncher.js",
7
7
  "types": "build/DevLauncher.d.ts",
@@ -67,5 +67,5 @@
67
67
  "/node_modules/(?!((jest-)?react-native|@react-native(-community)?)/|@react-navigation/)"
68
68
  ]
69
69
  },
70
- "gitHead": "a639a661a5329e58f916cf69b8f1a7718bbdd26e"
70
+ "gitHead": "45bd8a319fb2d6abadac8dcb0c821a55a1f0caa3"
71
71
  }