expo-dev-launcher 56.0.15 → 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,13 @@
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
+
13
20
  ## 56.0.15 — 2026-05-23
14
21
 
15
22
  ### 🐛 Bug fixes
@@ -26,7 +33,7 @@
26
33
 
27
34
  ### 🐛 Bug fixes
28
35
 
29
- - [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))
30
37
 
31
38
  ## 56.0.12 — 2026-05-19
32
39
 
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "56.0.15"
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.15"
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.15",
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.14",
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.4"
28
+ "expo": "56.0.5"
29
29
  },
30
- "gitHead": "6dfb0e4c958a1ea1d66d3f7952494ac58430ad45",
30
+ "gitHead": "f67a101bcbe56114e982184834b93da7bbed00af",
31
31
  "scripts": {
32
32
  "build:plugin": "expo-module build plugin",
33
33
  "expo-module": "expo-module"
@@ -31,7 +31,6 @@ const withStripLocalNetworkKeysForRelease = (config) => {
31
31
  }
32
32
  project.addBuildPhase([], 'PBXShellScriptBuildPhase', buildPhaseName, nativeTargetId, {
33
33
  shellPath: '/bin/sh',
34
- inputPaths: ['"$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)"'],
35
34
  shellScript: `# Strip dev-launcher-specific local network permission keys from non-Debug builds
36
35
  # This only removes _expo._tcp Bonjour services and the dev-launcher usage description.
37
36
  # Other Bonjour services and custom descriptions are preserved for production use.
@@ -68,6 +67,16 @@ if [ "$CONFIGURATION" != "Debug" ]; then
68
67
  fi
69
68
  `,
70
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
+ }
71
80
  return config;
72
81
  });
73
82
  };
@@ -46,7 +46,6 @@ const withStripLocalNetworkKeysForRelease: ConfigPlugin = (config) => {
46
46
 
47
47
  project.addBuildPhase([], 'PBXShellScriptBuildPhase', buildPhaseName, nativeTargetId, {
48
48
  shellPath: '/bin/sh',
49
- inputPaths: ['"$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)"'],
50
49
  shellScript: `# Strip dev-launcher-specific local network permission keys from non-Debug builds
51
50
  # This only removes _expo._tcp Bonjour services and the dev-launcher usage description.
52
51
  # Other Bonjour services and custom descriptions are preserved for production use.
@@ -84,6 +83,20 @@ fi
84
83
  `,
85
84
  });
86
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
+
87
100
  return config;
88
101
  });
89
102
  };
@@ -1 +1 @@
1
- {"root":["./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"5.9.3"}
1
+ {"root":["./src/index.ts","./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"6.0.3"}