expo-dev-launcher 55.0.36 → 55.0.37
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,13 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.37 — 2026-06-25
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [macOS] Fix LocalNetworkPermissionView max height ([#44745](https://github.com/expo/expo/pull/44745) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
|
+
- [iOS] Cleared the deep-link URL from cached `launchOptions` after it is consumed ([#46265](https://github.com/expo/expo/pull/46265) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
19
|
+
|
|
13
20
|
## 55.0.36 — 2026-05-19
|
|
14
21
|
|
|
15
22
|
_This version does not introduce any user-facing changes._
|
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.37"
|
|
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.37"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -109,9 +109,9 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
|
|
|
109
109
|
if (deepLink) {
|
|
110
110
|
// Passes pending deep link to initialURL if any
|
|
111
111
|
launchOptions[UIApplicationLaunchOptionsURLKey] = deepLink;
|
|
112
|
-
} else
|
|
113
|
-
//
|
|
114
|
-
//
|
|
112
|
+
} else {
|
|
113
|
+
// The pending deep link has already been consumed by an earlier React host. Strip the URL
|
|
114
|
+
// from the cached launchOptions so a subsequent React host
|
|
115
115
|
launchOptions[UIApplicationLaunchOptionsURLKey] = nil;
|
|
116
116
|
}
|
|
117
117
|
|
|
@@ -245,6 +245,10 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
|
|
|
245
245
|
// Reset app react host
|
|
246
246
|
[self.delegate destroyReactInstance];
|
|
247
247
|
|
|
248
|
+
// Tell expo-linking to clear its cached initial URL so the next React host doesn't pick up
|
|
249
|
+
// the deep link that originally launched the previous app.
|
|
250
|
+
[[NSNotificationCenter defaultCenter] postNotificationName:@"ExpoLinkingClearInitialURL" object:self];
|
|
251
|
+
|
|
248
252
|
if (_devLauncherViewController != nil) {
|
|
249
253
|
[_devLauncherViewController resetHostingController];
|
|
250
254
|
}
|
|
@@ -21,7 +21,7 @@ struct LocalNetworkPermissionView: View {
|
|
|
21
21
|
Color
|
|
22
22
|
.expoSystemBackground
|
|
23
23
|
.ignoresSafeArea(.all)
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
VStack(spacing: 24) {
|
|
26
26
|
Image("radar-icon", bundle: getDevLauncherBundle())
|
|
27
27
|
.resizable()
|
|
@@ -49,6 +49,9 @@ struct LocalNetworkPermissionView: View {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
.padding()
|
|
52
|
+
#if os(macOS)
|
|
53
|
+
.frame(maxHeight: 600)
|
|
54
|
+
#endif
|
|
52
55
|
}
|
|
53
56
|
.alert("Permission Not Granted", isPresented: $showTryAgainFailedAlert) {
|
|
54
57
|
Button("Open Settings") {
|
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.37",
|
|
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.4",
|
|
19
|
-
"expo-dev-menu": "55.0.
|
|
20
|
-
"expo-manifests": "~55.0.
|
|
19
|
+
"expo-dev-menu": "55.0.31",
|
|
20
|
+
"expo-manifests": "~55.0.18"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"expo": "*"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "0c1476ccb1494a2019171f5df1d7a1b7803455e9"
|
|
26
26
|
}
|