expo-dev-launcher 55.0.39 → 55.0.41

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.41 — 2026-08-31
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Forward the launching intent's extras when cold-launching the most recently opened bundle, so launch arguments (e.g. from Maestro/Detox or `adb am start -e`) reach the app and `react-native-launch-arguments` can read them. ([#47352](https://github.com/expo/expo/pull/47352) by [@kanzelm3](https://github.com/kanzelm3))
18
+
19
+ ## 55.0.40 — 2026-08-25
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 55.0.39 — 2026-08-17
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "55.0.39"
29
+ version = "55.0.41"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "55.0.39"
35
+ versionName "55.0.41"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -273,6 +273,12 @@ class DevLauncherController private constructor(
273
273
  val shouldTryToLaunchLastOpenedBundle = getMetadataValue(context, "DEV_CLIENT_TRY_TO_LAUNCH_LAST_BUNDLE", "true").toBoolean()
274
274
  val lastOpenedApp = recentlyOpedAppsRegistry.getMostRecentApp()
275
275
  if (shouldTryToLaunchLastOpenedBundle && lastOpenedApp != null) {
276
+ // Forward the launching intent's extras (e.g. launch arguments passed by
277
+ // Maestro / Detox / `adb am start -e`) so they reach the loaded app via
278
+ // `createAppIntent()`. Without this, cold-launching the last opened bundle
279
+ // drops the extras and consumers like `react-native-launch-arguments` read
280
+ // nothing. Mirrors `handleExternalIntent`, which already stores extras.
281
+ pendingIntentExtras = intent.extras
276
282
  coroutineScope.launch {
277
283
  try {
278
284
  loadApp(lastOpenedApp.url.toUri(), activityToBeInvalidated)
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.39",
4
+ "version": "55.0.41",
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.5",
19
- "expo-dev-menu": "55.0.33",
20
- "expo-manifests": "~55.0.20"
19
+ "expo-dev-menu": "55.0.34",
20
+ "expo-manifests": "~55.0.21"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "expo": "*"
24
24
  },
25
- "gitHead": "764641f87074c1e49d004790c5a5983f4b5bfc6b"
25
+ "gitHead": "30a1c5b4871a5a3f0f6545be0c2d1f67521a5e6f"
26
26
  }