expo-dev-menu 6.0.21 → 6.0.23
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 +10 -0
- package/android/build.gradle +2 -2
- package/ios/DevMenuViewController.swift +5 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 6.0.23 — 2025-04-01
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [ios] Fixed build errors in XCode 16.3 ([#35811](https://github.com/expo/expo/pull/35811) by [@chrfalch](https://github.com/chrfalch))
|
|
18
|
+
|
|
19
|
+
## 6.0.22 — 2025-03-31
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 6.0.21 — 2025-03-13
|
|
14
24
|
|
|
15
25
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '6.0.
|
|
4
|
+
version = '6.0.23'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
namespace "expo.modules.devmenu"
|
|
21
21
|
defaultConfig {
|
|
22
22
|
versionCode 10
|
|
23
|
-
versionName '6.0.
|
|
23
|
+
versionName '6.0.23'
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
buildTypes {
|
|
@@ -63,7 +63,11 @@ class DevMenuViewController: UIViewController {
|
|
|
63
63
|
// MARK: private
|
|
64
64
|
|
|
65
65
|
private func initialProps() -> [String: Any] {
|
|
66
|
-
|
|
66
|
+
#if targetEnvironment(simulator)
|
|
67
|
+
let isSimulator = true
|
|
68
|
+
#else
|
|
69
|
+
let isSimulator = false
|
|
70
|
+
#endif
|
|
67
71
|
|
|
68
72
|
return [
|
|
69
73
|
"showOnboardingView": manager.shouldShowOnboarding(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-menu",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.23",
|
|
4
4
|
"description": "Expo/React Native module with the developer menu.",
|
|
5
5
|
"main": "build/DevMenu.js",
|
|
6
6
|
"types": "build/DevMenu.d.ts",
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"@testing-library/jest-native": "^4.0.4",
|
|
56
56
|
"@testing-library/react-native": "^12.5.1",
|
|
57
57
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
58
|
-
"babel-preset-expo": "~12.0.
|
|
58
|
+
"babel-preset-expo": "~12.0.10",
|
|
59
59
|
"expo-dev-client-components": "2.0.4",
|
|
60
60
|
"expo-module-scripts": "^4.0.4",
|
|
61
61
|
"fuse.js": "^6.4.6",
|
|
62
62
|
"react": "18.3.1",
|
|
63
|
-
"react-native": "0.76.
|
|
63
|
+
"react-native": "0.76.8",
|
|
64
64
|
"url": "^0.11.0",
|
|
65
65
|
"use-subscription": "^1.8.0"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"expo": "*"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "b08a0bd52965f85871c12c31da16a45e2cd26c4c"
|
|
71
71
|
}
|