expo-dev-launcher 56.0.16 → 56.0.17
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 +6 -0
- package/android/build.gradle +2 -2
- package/ios/EXDevLauncherController.m +7 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 56.0.17 — 2026-05-29
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [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))
|
|
18
|
+
|
|
13
19
|
## 56.0.16 — 2026-05-26
|
|
14
20
|
|
|
15
21
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -26,13 +26,13 @@ expoModule {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
group = "host.exp.exponent"
|
|
29
|
-
version = "56.0.
|
|
29
|
+
version = "56.0.17"
|
|
30
30
|
|
|
31
31
|
android {
|
|
32
32
|
namespace "expo.modules.devlauncher"
|
|
33
33
|
defaultConfig {
|
|
34
34
|
versionCode 9
|
|
35
|
-
versionName "56.0.
|
|
35
|
+
versionName "56.0.17"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -116,9 +116,9 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
|
|
|
116
116
|
if (deepLink) {
|
|
117
117
|
// Passes pending deep link to initialURL if any
|
|
118
118
|
launchOptions[UIApplicationLaunchOptionsURLKey] = deepLink;
|
|
119
|
-
} else
|
|
120
|
-
//
|
|
121
|
-
//
|
|
119
|
+
} else {
|
|
120
|
+
// The pending deep link has already been consumed by an earlier React host. Strip the URL
|
|
121
|
+
// from the cached launchOptions so a subsequent React host
|
|
122
122
|
launchOptions[UIApplicationLaunchOptionsURLKey] = nil;
|
|
123
123
|
}
|
|
124
124
|
|
|
@@ -294,6 +294,10 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
|
|
|
294
294
|
// Reset app react host
|
|
295
295
|
[self.delegate destroyReactInstance];
|
|
296
296
|
|
|
297
|
+
// Tell expo-linking to clear its cached initial URL so the next React host doesn't pick up
|
|
298
|
+
// the deep link that originally launched the previous app.
|
|
299
|
+
[[NSNotificationCenter defaultCenter] postNotificationName:@"ExpoLinkingClearInitialURL" object:self];
|
|
300
|
+
|
|
297
301
|
if (_devLauncherViewController != nil) {
|
|
298
302
|
[_devLauncherViewController resetHostingController];
|
|
299
303
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-launcher",
|
|
3
3
|
"title": "Expo Development Launcher",
|
|
4
|
-
"version": "56.0.
|
|
4
|
+
"version": "56.0.17",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^22.14.0",
|
|
28
|
-
"expo": "56.0.
|
|
28
|
+
"expo": "56.0.7"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "a7adc95c1747db1e92655feba56d0e62660098db",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build:plugin": "expo-module build plugin",
|
|
33
33
|
"expo-module": "expo-module"
|