expo-dev-launcher 56.0.12 → 56.0.14
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,18 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 56.0.14 — 2026-05-21
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix an ES module import error in the typed config plugin. ([#46089](https://github.com/expo/expo/pull/46089) by [@zoontek](https://github.com/zoontek))
|
|
18
|
+
|
|
19
|
+
## 56.0.13 — 2026-05-20
|
|
20
|
+
|
|
21
|
+
### 🐛 Bug fixes
|
|
22
|
+
|
|
23
|
+
- [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))
|
|
24
|
+
|
|
13
25
|
## 56.0.12 — 2026-05-19
|
|
14
26
|
|
|
15
27
|
_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 = "56.0.
|
|
29
|
+
version = "56.0.14"
|
|
30
30
|
|
|
31
31
|
android {
|
|
32
32
|
namespace "expo.modules.devlauncher"
|
|
33
33
|
defaultConfig {
|
|
34
34
|
versionCode 9
|
|
35
|
-
versionName "56.0.
|
|
35
|
+
versionName "56.0.14"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -4,6 +4,7 @@ import ExpoModulesCore
|
|
|
4
4
|
import Foundation
|
|
5
5
|
import AuthenticationServices
|
|
6
6
|
import Network
|
|
7
|
+
import EXDevMenu
|
|
7
8
|
|
|
8
9
|
private let selectedAccountKey = "expo-selected-account-id"
|
|
9
10
|
private let sessionKey = "expo-session-secret"
|
|
@@ -34,17 +35,19 @@ class DevLauncherViewModel: ObservableObject {
|
|
|
34
35
|
@Published var hasStoredCrash = false
|
|
35
36
|
@Published var shakeDevice = true {
|
|
36
37
|
didSet {
|
|
37
|
-
|
|
38
|
+
DevMenuManager.shared.setMotionGestureEnabled(shakeDevice)
|
|
38
39
|
}
|
|
39
40
|
}
|
|
40
41
|
@Published var threeFingerLongPress = false {
|
|
41
42
|
didSet {
|
|
42
|
-
|
|
43
|
+
// Route through DevMenuManager so the recognizer is installed/uninstalled immediately
|
|
44
|
+
DevMenuManager.shared.setTouchGestureEnabled(threeFingerLongPress)
|
|
43
45
|
}
|
|
44
46
|
}
|
|
45
47
|
@Published var showOnLaunch = false {
|
|
46
48
|
didSet {
|
|
47
|
-
|
|
49
|
+
// Route through DevMenuManager so the auto-launch observer is refreshed immediately
|
|
50
|
+
DevMenuManager.shared.setShowsAtLaunch(showOnLaunch)
|
|
48
51
|
}
|
|
49
52
|
}
|
|
50
53
|
@Published var isAuthenticated = false
|
|
@@ -202,7 +205,7 @@ class DevLauncherViewModel: ObservableObject {
|
|
|
202
205
|
stopServerDiscovery()
|
|
203
206
|
startDevServerBrowser()
|
|
204
207
|
}
|
|
205
|
-
|
|
208
|
+
|
|
206
209
|
func markNetworkPermissionGranted() {
|
|
207
210
|
UserDefaults.standard.set(true, forKey: networkPermissionGrantedKey)
|
|
208
211
|
permissionStatus = .granted
|
|
@@ -410,10 +413,6 @@ class DevLauncherViewModel: ObservableObject {
|
|
|
410
413
|
showOnLaunch = defaults.object(forKey: "EXDevMenuShowsAtLaunch") as? Bool ?? false
|
|
411
414
|
}
|
|
412
415
|
|
|
413
|
-
private func saveMenuPreference(key: String, value: Bool) {
|
|
414
|
-
UserDefaults.standard.set(value, forKey: key)
|
|
415
|
-
}
|
|
416
|
-
|
|
417
416
|
private func checkAuthenticationStatus() {
|
|
418
417
|
let sessionSecret = UserDefaults.standard.string(forKey: sessionKey)
|
|
419
418
|
|
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.
|
|
4
|
+
"version": "56.0.14",
|
|
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.
|
|
19
|
+
"expo-dev-menu": "~56.0.13",
|
|
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.
|
|
28
|
+
"expo": "56.0.3"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "125e8225bf36a4b9b2a159441d9ea724bcf1110f",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build:plugin": "expo-module build plugin",
|
|
33
33
|
"expo-module": "expo-module"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './build';
|
package/plugin/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
module.exports = require('./build');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"5.9.3"}
|