expo-dev-launcher 55.0.25 → 55.0.26

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.26 — 2026-04-10
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fixed deep links not reaching the app because `EXDevLauncherController.isAppRunning` always returned `false`. ([#44609](https://github.com/expo/expo/pull/44609) by [@vonovak](https://github.com/vonovak))
18
+
13
19
  ## 55.0.25 — 2026-04-09
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "55.0.25"
29
+ version = "55.0.26"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "55.0.25"
35
+ versionName "55.0.26"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -41,7 +41,6 @@ NS_ASSUME_NONNULL_BEGIN
41
41
 
42
42
  @interface EXDevLauncherController : RCTDefaultReactNativeFactoryDelegate <RCTBridgeDelegate, EXUpdatesExternalInterfaceDelegate>
43
43
 
44
- @property (nonatomic, weak) RCTBridge * _Nullable appBridge;
45
44
  @property (nonatomic, weak) EXAppContext * _Nullable appContext;
46
45
  @property (nonatomic, strong) EXDevLauncherPendingDeepLinkRegistry *pendingDeepLinkRegistry;
47
46
  @property (nonatomic, strong) EXDevLauncherRecentlyOpenedAppsRegistry *recentlyOpenedAppsRegistry;
@@ -228,7 +228,6 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
228
228
  {
229
229
  NSAssert([NSThread isMainThread], @"This function must be called on main thread");
230
230
 
231
- [_appBridge invalidate];
232
231
  [self invalidateDevMenuApp];
233
232
 
234
233
  self.networkInterceptor = nil;
@@ -508,11 +507,7 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
508
507
 
509
508
  - (BOOL)isAppRunning
510
509
  {
511
- if([_appBridge isProxy]){
512
- return [self.delegate isReactInstanceValid];
513
- }
514
-
515
- return [_appBridge isValid];
510
+ return [self.delegate isReactInstanceValid];
516
511
  }
517
512
 
518
513
  #if !TARGET_OS_OSX
@@ -54,7 +54,7 @@ public class EXDevLauncherUncaughtExceptionHandler: NSObject {
54
54
  // URL structure replicates
55
55
  // https://github.com/facebook/react-native/blob/0.69-stable/Libraries/Utilities/HMRClient.js#L164
56
56
  // but URLSessionWebSocketTask will crash if the scheme is not `ws` or `wss`
57
- guard let appUrl = controller.appBridge?.bundleURL else {
57
+ guard let appUrl = controller.sourceUrl() else {
58
58
  return nil
59
59
  }
60
60
  guard let socketUrl = URL.init(string: "hot", relativeTo: appUrl) else {
@@ -115,7 +115,6 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
115
115
  initialProps: self.rootViewInitialProperties,
116
116
  launchOptions: developmentClientController.getLaunchOptions()
117
117
  )
118
- developmentClientController.appBridge = RCTBridge.current()
119
118
 
120
119
  let targetVC: UIViewController
121
120
  #if !os(macOS)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "55.0.25",
4
+ "version": "55.0.26",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -22,5 +22,5 @@
22
22
  "peerDependencies": {
23
23
  "expo": "*"
24
24
  },
25
- "gitHead": "b0ada30fd6a819c5f98a23d99b1b89a2ed68743d"
25
+ "gitHead": "ba4ff190e5abefff1a7758006bf822d14e223218"
26
26
  }