expo-dev-menu 7.0.17 → 7.0.18

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
+ ## 7.0.18 — 2025-12-04
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] don't trigger double reload on r key press ([#41355](https://github.com/expo/expo/pull/41355) by [@vonovak](https://github.com/vonovak))
18
+
13
19
  ## 7.0.17 — 2025-11-17
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -12,7 +12,7 @@ apply plugin: 'expo-module-gradle-plugin'
12
12
  apply plugin: 'org.jetbrains.kotlin.plugin.compose'
13
13
 
14
14
  group = 'host.exp.exponent'
15
- version = '7.0.17'
15
+ version = '7.0.18'
16
16
 
17
17
  expoModule {
18
18
  canBePublished false
@@ -20,14 +20,27 @@ expoModule {
20
20
 
21
21
  android {
22
22
  namespace "expo.modules.devmenu"
23
+
23
24
  defaultConfig {
24
25
  versionCode 10
25
- versionName '7.0.17'
26
+ versionName '7.0.18'
26
27
  }
27
- buildFeatures {
28
- compose true
28
+
29
+ buildTypes {
30
+ create("debugOptimized") {
31
+ initWith(buildTypes.debug)
32
+ matchingFallbacks += ["release"]
33
+ }
29
34
  }
35
+
36
+ sourceSets {
37
+ debugOptimized {
38
+ setRoot 'src/debug'
39
+ }
40
+ }
41
+
30
42
  buildFeatures {
43
+ compose true
31
44
  buildConfig true
32
45
  }
33
46
  }
@@ -41,14 +41,6 @@ class DevMenuKeyCommandsInterceptor {
41
41
  action: { _ in DevMenuManager.shared.toggleMenu() }
42
42
  )
43
43
 
44
- commands.registerKeyCommand(
45
- withInput: "r",
46
- modifierFlags: .command,
47
- action: { _ in
48
- DevMenuManager.shared.reload()
49
- }
50
- )
51
-
52
44
  commands.registerKeyCommand(
53
45
  withInput: "r",
54
46
  modifierFlags: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "7.0.17",
3
+ "version": "7.0.18",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -42,7 +42,7 @@
42
42
  "babel-plugin-module-resolver": "^5.0.0",
43
43
  "babel-preset-expo": "~54.0.7",
44
44
  "expo-dev-client-components": "3.0.7",
45
- "expo-module-scripts": "^5.0.7",
45
+ "expo-module-scripts": "^5.0.8",
46
46
  "fuse.js": "^6.4.6",
47
47
  "react": "19.1.0",
48
48
  "react-native": "0.81.5",
@@ -52,5 +52,5 @@
52
52
  "peerDependencies": {
53
53
  "expo": "*"
54
54
  },
55
- "gitHead": "6d7c221dc8a1994043c4f2ddcf33a16bf3e508dc"
55
+ "gitHead": "e8b838828e5e985379c07294dc932dba66c89562"
56
56
  }