expo-dev-launcher 55.0.27 → 55.0.28
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 +7 -1
- package/android/build.gradle +2 -2
- package/ios/EXDevLauncherController.h +1 -0
- package/ios/EXDevLauncherController.m +6 -1
- package/ios/Errors/EXDevLauncherUncaughtExceptionHandler.swift +1 -1
- package/ios/ReactDelegateHandler/ExpoDevLauncherReactDelegateHandler.swift +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.28 — 2026-04-11
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] revert 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.27 — 2026-04-10
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
|
@@ -18,7 +24,7 @@ _This version does not introduce any user-facing changes._
|
|
|
18
24
|
|
|
19
25
|
### 🐛 Bug fixes
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
~~- [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))~~
|
|
22
28
|
|
|
23
29
|
## 55.0.25 — 2026-04-09
|
|
24
30
|
|
package/android/build.gradle
CHANGED
|
@@ -26,13 +26,13 @@ expoModule {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
group = "host.exp.exponent"
|
|
29
|
-
version = "55.0.
|
|
29
|
+
version = "55.0.28"
|
|
30
30
|
|
|
31
31
|
android {
|
|
32
32
|
namespace "expo.modules.devlauncher"
|
|
33
33
|
defaultConfig {
|
|
34
34
|
versionCode 9
|
|
35
|
-
versionName "55.0.
|
|
35
|
+
versionName "55.0.28"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -41,6 +41,7 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
41
41
|
|
|
42
42
|
@interface EXDevLauncherController : RCTDefaultReactNativeFactoryDelegate <RCTBridgeDelegate, EXUpdatesExternalInterfaceDelegate>
|
|
43
43
|
|
|
44
|
+
@property (nonatomic, weak) RCTBridge * _Nullable appBridge;
|
|
44
45
|
@property (nonatomic, weak) EXAppContext * _Nullable appContext;
|
|
45
46
|
@property (nonatomic, strong) EXDevLauncherPendingDeepLinkRegistry *pendingDeepLinkRegistry;
|
|
46
47
|
@property (nonatomic, strong) EXDevLauncherRecentlyOpenedAppsRegistry *recentlyOpenedAppsRegistry;
|
|
@@ -228,6 +228,7 @@ 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];
|
|
231
232
|
[self invalidateDevMenuApp];
|
|
232
233
|
|
|
233
234
|
self.networkInterceptor = nil;
|
|
@@ -507,7 +508,11 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
|
|
|
507
508
|
|
|
508
509
|
- (BOOL)isAppRunning
|
|
509
510
|
{
|
|
510
|
-
|
|
511
|
+
if([_appBridge isProxy]){
|
|
512
|
+
return [self.delegate isReactInstanceValid];
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
return [_appBridge isValid];
|
|
511
516
|
}
|
|
512
517
|
|
|
513
518
|
#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.
|
|
57
|
+
guard let appUrl = controller.appBridge?.bundleURL else {
|
|
58
58
|
return nil
|
|
59
59
|
}
|
|
60
60
|
guard let socketUrl = URL.init(string: "hot", relativeTo: appUrl) else {
|
|
@@ -115,6 +115,7 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
|
|
|
115
115
|
initialProps: self.rootViewInitialProperties,
|
|
116
116
|
launchOptions: developmentClientController.getLaunchOptions()
|
|
117
117
|
)
|
|
118
|
+
developmentClientController.appBridge = RCTBridge.current()
|
|
118
119
|
|
|
119
120
|
let targetVC: UIViewController
|
|
120
121
|
#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.
|
|
4
|
+
"version": "55.0.28",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"homepage": "https://docs.expo.dev",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@expo/schema-utils": "^55.0.3",
|
|
19
|
-
"expo-dev-menu": "55.0.
|
|
19
|
+
"expo-dev-menu": "55.0.23",
|
|
20
20
|
"expo-manifests": "~55.0.15"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"expo": "*"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "9501516951885373128fc20687b17775c8275453"
|
|
26
26
|
}
|