expo-dev-launcher 55.0.30 → 55.0.32
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,14 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.32 — 2026-05-04
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 55.0.31 — 2026-05-01
|
|
18
|
+
|
|
19
|
+
_This version does not introduce any user-facing changes._
|
|
20
|
+
|
|
13
21
|
## 55.0.30 — 2026-05-01
|
|
14
22
|
|
|
15
23
|
### 🎉 New features
|
package/android/build.gradle
CHANGED
|
@@ -26,13 +26,13 @@ expoModule {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
group = "host.exp.exponent"
|
|
29
|
-
version = "55.0.
|
|
29
|
+
version = "55.0.32"
|
|
30
30
|
|
|
31
31
|
android {
|
|
32
32
|
namespace "expo.modules.devlauncher"
|
|
33
33
|
defaultConfig {
|
|
34
34
|
versionCode 9
|
|
35
|
-
versionName "55.0.
|
|
35
|
+
versionName "55.0.32"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -125,6 +125,12 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
|
|
|
125
125
|
// Greenfield: add DevLauncherViewController as a child of the window's root VC
|
|
126
126
|
// so react-native-screens finds a VC in the containment hierarchy with correct
|
|
127
127
|
// layout margins.
|
|
128
|
+
//
|
|
129
|
+
// Note: this inserts DevLauncherViewController between ScreenOrientationViewController
|
|
130
|
+
// (the window root VC) and RNSNavigationController, which blocks react-native-screens'
|
|
131
|
+
// single-level VC traversal for orientation and other window traits.
|
|
132
|
+
// ScreenOrientationViewController.vcWithRNScreenOrientation() works around this by
|
|
133
|
+
// searching one level deeper through child VCs.
|
|
128
134
|
rootViewController.view = rootView
|
|
129
135
|
if rootViewController.parent != windowRootVC {
|
|
130
136
|
windowRootVC.addChild(rootViewController)
|
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.
|
|
4
|
+
"version": "55.0.32",
|
|
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.3",
|
|
19
|
-
"expo-dev-menu": "55.0.
|
|
19
|
+
"expo-dev-menu": "55.0.26",
|
|
20
20
|
"expo-manifests": "~55.0.16"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"expo": "*"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "6ab08fe32823d60ad90b3ca2821b4d99a3ae06e9"
|
|
26
26
|
}
|