expo-dev-launcher 55.0.14 → 55.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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.16 — 2026-03-11
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 55.0.15 — 2026-03-11
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - [iOS] Fix orientation change regression. ([#43847](https://github.com/expo/expo/pull/43847) by [@alanjhughes](https://github.com/alanjhughes))
22
+
13
23
  ## 55.0.14 — 2026-03-09
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.14"
29
+ version = "55.0.16"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "55.0.14"
35
+ versionName "55.0.16"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -120,10 +120,20 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
120
120
  let targetVC: UIViewController
121
121
  #if !os(macOS)
122
122
  let windowRootVC = rootViewController?.view?.window?.rootViewController
123
- if let windowRootVC, windowRootVC.view is DevLauncherWrapperView {
124
- // Greenfield: set root view on the window's root VC so react-native-screens parents its
125
- // UINavigationController to a VC in the containment hierarchy with correct layout margins.
126
- targetVC = windowRootVC
123
+
124
+ if let windowRootVC, let rootViewController {
125
+ // Greenfield: add DevLauncherViewController as a child of the window's root VC
126
+ // so react-native-screens finds a VC in the containment hierarchy with correct
127
+ // layout margins.
128
+ rootViewController.view = rootView
129
+ if rootViewController.parent != windowRootVC {
130
+ windowRootVC.addChild(rootViewController)
131
+ }
132
+ rootViewController.view.frame = windowRootVC.view.bounds
133
+ rootViewController.view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
134
+ windowRootVC.view.addSubview(rootViewController.view)
135
+ rootViewController.didMove(toParent: windowRootVC)
136
+ return
127
137
  } else if let rootViewController {
128
138
  // Brownfield: the wrapper is embedded in a custom hierarchy, fall back to
129
139
  // DevLauncherViewController to avoid replacing the host app's root view.
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.14",
4
+ "version": "55.0.16",
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.2",
19
- "expo-dev-menu": "55.0.12",
19
+ "expo-dev-menu": "55.0.13",
20
20
  "expo-manifests": "~55.0.9"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "expo": "*"
24
24
  },
25
- "gitHead": "4555cab5869e94b1152cf2cbbfa6d545766362e3"
25
+ "gitHead": "2ec7e7e966b3983029db9ffa15c03f5982847c7c"
26
26
  }