expo-dev-launcher 55.0.11 → 55.0.12
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,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.12 — 2026-03-04
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Fix issue when using `fullScreenModal` with `expo-router`. ([#43520](https://github.com/expo/expo/pull/43520) by [@alanjhughes](https://github.com/alanjhughes))
|
|
18
|
+
|
|
13
19
|
## 55.0.11 — 2026-02-26
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
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.12"
|
|
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.12"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -6,66 +6,25 @@ import React
|
|
|
6
6
|
|
|
7
7
|
private class DevLauncherWrapperView: UIView {
|
|
8
8
|
weak var devLauncherViewController: UIViewController?
|
|
9
|
-
private var devLauncherConstraints: [NSLayoutConstraint] = []
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
#endif
|
|
19
|
-
|
|
20
|
-
func setDevLauncherViewControllerConstraints(_ viewController: UIViewController) {
|
|
21
|
-
viewController.view.translatesAutoresizingMaskIntoConstraints = false
|
|
22
|
-
if !devLauncherConstraints.isEmpty {
|
|
23
|
-
NSLayoutConstraint.deactivate(devLauncherConstraints)
|
|
24
|
-
}
|
|
25
|
-
devLauncherConstraints = [
|
|
26
|
-
viewController.view.topAnchor.constraint(equalTo: self.topAnchor),
|
|
27
|
-
viewController.view.leadingAnchor.constraint(equalTo: self.leadingAnchor),
|
|
28
|
-
viewController.view.trailingAnchor.constraint(equalTo: self.trailingAnchor),
|
|
29
|
-
viewController.view.bottomAnchor.constraint(equalTo: self.bottomAnchor)
|
|
30
|
-
]
|
|
31
|
-
NSLayoutConstraint.activate(devLauncherConstraints)
|
|
10
|
+
func setupDevLauncherView(_ viewController: UIViewController) {
|
|
11
|
+
#if os(macOS)
|
|
12
|
+
viewController.view.autoresizingMask = [.width, .height]
|
|
13
|
+
#else
|
|
14
|
+
viewController.view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
|
|
15
|
+
#endif
|
|
16
|
+
viewController.view.frame = bounds
|
|
32
17
|
}
|
|
33
18
|
|
|
34
19
|
#if !os(macOS)
|
|
35
|
-
override func
|
|
36
|
-
super.
|
|
37
|
-
|
|
38
|
-
if window != nil {
|
|
39
|
-
NotificationCenter.default.addObserver(self, selector: #selector(orientationDidChange), name: UIDevice.orientationDidChangeNotification, object: nil)
|
|
40
|
-
}
|
|
41
|
-
#endif
|
|
42
|
-
|
|
43
|
-
guard let devLauncherViewController,
|
|
44
|
-
let window,
|
|
45
|
-
let rootViewController = window.rootViewController else {
|
|
46
|
-
return
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
let isSwiftUIController = NSStringFromClass(type(of: rootViewController)).contains("UIHostingController")
|
|
50
|
-
// TODO(pmleczek): Revisit this for a more reliable solution
|
|
51
|
-
let isBrownfield = NSStringFromClass(type(of: rootViewController)).contains("UINavigationController")
|
|
52
|
-
if !isSwiftUIController && !isBrownfield && devLauncherViewController.parent != rootViewController {
|
|
53
|
-
rootViewController.addChild(devLauncherViewController)
|
|
54
|
-
devLauncherViewController.didMove(toParent: rootViewController)
|
|
55
|
-
devLauncherViewController.view.setNeedsLayout()
|
|
56
|
-
devLauncherViewController.view.layoutIfNeeded()
|
|
57
|
-
}
|
|
20
|
+
override func layoutSubviews() {
|
|
21
|
+
super.layoutSubviews()
|
|
22
|
+
devLauncherViewController?.view.frame = bounds
|
|
58
23
|
}
|
|
59
24
|
|
|
60
|
-
override func
|
|
61
|
-
super.
|
|
62
|
-
|
|
63
|
-
devLauncherViewController?.willMove(toParent: nil)
|
|
64
|
-
devLauncherViewController?.removeFromParent()
|
|
65
|
-
#if os(iOS)
|
|
66
|
-
NotificationCenter.default.removeObserver(self, name: UIDevice.orientationDidChangeNotification, object: nil)
|
|
67
|
-
#endif
|
|
68
|
-
}
|
|
25
|
+
override func safeAreaInsetsDidChange() {
|
|
26
|
+
super.safeAreaInsetsDidChange()
|
|
27
|
+
devLauncherViewController?.view.layoutIfNeeded()
|
|
69
28
|
}
|
|
70
29
|
#endif
|
|
71
30
|
}
|
|
@@ -110,7 +69,7 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
|
|
|
110
69
|
let wrapperView = DevLauncherWrapperView()
|
|
111
70
|
wrapperView.devLauncherViewController = viewController
|
|
112
71
|
wrapperView.addSubview(viewController.view)
|
|
113
|
-
wrapperView.
|
|
72
|
+
wrapperView.setupDevLauncherView(viewController)
|
|
114
73
|
return wrapperView
|
|
115
74
|
}
|
|
116
75
|
|
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.12",
|
|
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.
|
|
19
|
+
"expo-dev-menu": "55.0.11",
|
|
20
20
|
"expo-manifests": "~55.0.9"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"expo": "*"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "2d0f6652717a0c88f4fb82b7b288bfcbfe0f2373"
|
|
26
26
|
}
|