expo-dev-launcher 56.0.12 → 56.0.13

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
+ ## 56.0.13 — 2026-05-20
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [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))
18
+
13
19
  ## 56.0.12 — 2026-05-19
14
20
 
15
21
  _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 = "56.0.12"
29
+ version = "56.0.13"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "56.0.12"
35
+ versionName "56.0.13"
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
- saveMenuPreference(key: "EXDevMenuMotionGestureEnabled", value: shakeDevice)
38
+ DevMenuManager.shared.setMotionGestureEnabled(shakeDevice)
38
39
  }
39
40
  }
40
41
  @Published var threeFingerLongPress = false {
41
42
  didSet {
42
- saveMenuPreference(key: "EXDevMenuTouchGestureEnabled", value: threeFingerLongPress)
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
- saveMenuPreference(key: "EXDevMenuShowsAtLaunch", value: showOnLaunch)
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.12",
4
+ "version": "56.0.13",
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.11",
19
+ "expo-dev-menu": "~56.0.12",
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.0-preview.13"
28
+ "expo": "56.0.0"
29
29
  },
30
- "gitHead": "290368bc41026449a05a4ebf991b85c3a2fb0e3a",
30
+ "gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
31
31
  "scripts": {
32
32
  "build:plugin": "expo-module build plugin",
33
33
  "expo-module": "expo-module"
@@ -1 +1 @@
1
- {"root":["./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"5.9.3"}
1
+ {"root":["./src/index.ts","./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"6.0.2"}