expo-dev-menu 55.0.25 → 55.0.27

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.27 — 2026-05-04
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 55.0.26 — 2026-05-01
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 55.0.25 — 2026-05-01
14
22
 
15
23
  ### 🎉 New features
@@ -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 = '55.0.25'
15
+ version = '55.0.27'
16
16
 
17
17
  def hasDevLauncher = findProject(":expo-dev-launcher") != null
18
18
  def configureInRelease = findProperty("expo.devmenu.configureInRelease") == "true"
@@ -29,7 +29,7 @@ android {
29
29
 
30
30
  defaultConfig {
31
31
  versionCode 10
32
- versionName '55.0.25'
32
+ versionName '55.0.27'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -59,7 +59,7 @@ class DevMenuDefaultPreferences(
59
59
  val ai = application.packageManager.getApplicationInfo(
60
60
  application.packageName, PackageManager.GET_META_DATA
61
61
  )
62
- ai.metaData?.getString("EXDevMenuShowFloatingActionButton")?.toBoolean() ?: true
62
+ ai.metaData?.getBoolean("EXDevMenuShowFloatingActionButton", true) ?: true
63
63
  } catch (_: Exception) {
64
64
  true
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "55.0.25",
3
+ "version": "55.0.27",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -39,7 +39,7 @@
39
39
  "@babel/preset-typescript": "^7.7.4",
40
40
  "@testing-library/react-native": "^13.3.0",
41
41
  "babel-plugin-module-resolver": "^5.0.0",
42
- "babel-preset-expo": "~55.0.19",
42
+ "babel-preset-expo": "~55.0.20",
43
43
  "expo-module-scripts": "^55.0.2",
44
44
  "react": "19.2.0",
45
45
  "react-native": "0.83.6"
@@ -47,5 +47,5 @@
47
47
  "peerDependencies": {
48
48
  "expo": "*"
49
49
  },
50
- "gitHead": "1528d89d7b1076a4d8b88eb7b1e9e9c4e8c8f9d8"
50
+ "gitHead": "ffc5bbd08431f5a7ca6666d79de98b585e37b330"
51
51
  }