expo-dev-launcher 56.0.14 → 56.0.16

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,19 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.16 — 2026-05-26
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fixed `defaultLaunchURL` being ignored on cold start when no recently-opened app was cached. ([#46185](https://github.com/expo/expo/pull/46185) by [@kaihirota](https://github.com/kaihirota))
18
+ - [iOS] Order the build phase by array position to avoid a dependency cycle when the main target embeds an app extension. ([#46224](https://github.com/expo/expo/pull/46224) by [@alanjhughes](https://github.com/alanjhughes))
19
+
20
+ ## 56.0.15 — 2026-05-23
21
+
22
+ ### 🐛 Bug fixes
23
+
24
+ - [iOS] Fix xcode build phase ordering. ([#46125](https://github.com/expo/expo/pull/46125) by [@alanjhughes](https://github.com/alanjhughes))
25
+
13
26
  ## 56.0.14 — 2026-05-21
14
27
 
15
28
  ### 🐛 Bug fixes
@@ -20,7 +33,7 @@
20
33
 
21
34
  ### 🐛 Bug fixes
22
35
 
23
- - [iOS] Apply dev launcher gesture and auto-launch settings immediately instead of requiring an app restart. ([#XXXXX](https://github.com/expo/expo/pull/XXXXX) by [@gabrieldonadel](https://github.com/gabrieldonadel)) ([#46000](https://github.com/expo/expo/pull/46000) by [@gabrieldonadel](https://github.com/gabrieldonadel))
36
+ - [iOS] Apply dev launcher gesture and auto-launch settings immediately instead of requiring an app restart. ([#46000](https://github.com/expo/expo/pull/46000) by [@gabrieldonadel](https://github.com/gabrieldonadel))
24
37
 
25
38
  ## 56.0.12 — 2026-05-19
26
39
 
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "56.0.14"
29
+ version = "56.0.16"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "56.0.14"
35
+ versionName "56.0.16"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -252,7 +252,11 @@ static const NSTimeInterval EXDevLauncherDefaultRequestTimeout = 10.0;
252
252
  return;
253
253
  }
254
254
 
255
- [self useDefaultLaunchUrlFallback];
255
+ if (useDefaultLaunchUrlFallback) {
256
+ [self launchDefaultUrlFallbackOrNavigateToLauncher];
257
+ } else {
258
+ [self navigateToLauncher];
259
+ }
256
260
  }
257
261
 
258
262
  - (void)launchDefaultUrlFallbackOrNavigateToLauncher {
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.14",
4
+ "version": "56.0.16",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "homepage": "https://docs.expo.dev",
17
17
  "dependencies": {
18
18
  "@expo/schema-utils": "^56.0.0",
19
- "expo-dev-menu": "~56.0.13",
19
+ "expo-dev-menu": "~56.0.15",
20
20
  "expo-manifests": "~56.0.4"
21
21
  },
22
22
  "peerDependencies": {
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.14.0",
28
- "expo": "56.0.3"
28
+ "expo": "56.0.5"
29
29
  },
30
- "gitHead": "125e8225bf36a4b9b2a159441d9ea724bcf1110f",
30
+ "gitHead": "f67a101bcbe56114e982184834b93da7bbed00af",
31
31
  "scripts": {
32
32
  "build:plugin": "expo-module build plugin",
33
33
  "expo-module": "expo-module"
@@ -67,6 +67,16 @@ if [ "$CONFIGURATION" != "Debug" ]; then
67
67
  fi
68
68
  `,
69
69
  });
70
+ const targetPhases = project.pbxNativeTargetSection()[nativeTargetId]?.buildPhases ?? [];
71
+ const addedIdx = targetPhases.findIndex((p) => p.comment === buildPhaseName);
72
+ if (addedIdx >= 0) {
73
+ const [added] = targetPhases.splice(addedIdx, 1);
74
+ if (added) {
75
+ const firstEmbedIdx = targetPhases.findIndex((p) => /^Embed |^\[CP\] Embed /.test(p.comment ?? ''));
76
+ const insertIdx = firstEmbedIdx >= 0 ? firstEmbedIdx : targetPhases.length;
77
+ targetPhases.splice(insertIdx, 0, added);
78
+ }
79
+ }
70
80
  return config;
71
81
  });
72
82
  };
@@ -83,6 +83,20 @@ fi
83
83
  `,
84
84
  });
85
85
 
86
+ const targetPhases: { value: string; comment?: string }[] =
87
+ project.pbxNativeTargetSection()[nativeTargetId]?.buildPhases ?? [];
88
+ const addedIdx = targetPhases.findIndex((p) => p.comment === buildPhaseName);
89
+ if (addedIdx >= 0) {
90
+ const [added] = targetPhases.splice(addedIdx, 1);
91
+ if (added) {
92
+ const firstEmbedIdx = targetPhases.findIndex((p) =>
93
+ /^Embed |^\[CP\] Embed /.test(p.comment ?? '')
94
+ );
95
+ const insertIdx = firstEmbedIdx >= 0 ? firstEmbedIdx : targetPhases.length;
96
+ targetPhases.splice(insertIdx, 0, added);
97
+ }
98
+ }
99
+
86
100
  return config;
87
101
  });
88
102
  };
@@ -0,0 +1 @@
1
+ {"root":["./src/index.ts","./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"6.0.3"}