expo-dev-launcher 57.0.3 → 57.0.5
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/SwiftUI/DevServersView.swift +12 -0
- package/package.json +5 -5
- package/plugin/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 57.0.5 — 2026-07-03
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Fix tvOS compile error in DevServersView. ([#47082](https://github.com/expo/expo/pull/47082) by [@douglowder](https://github.com/douglowder))
|
|
18
|
+
|
|
19
|
+
## 57.0.4 — 2026-07-01
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 57.0.3 — 2026-06-30
|
|
14
24
|
|
|
15
25
|
_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 = "57.0.
|
|
29
|
+
version = "57.0.5"
|
|
30
30
|
|
|
31
31
|
android {
|
|
32
32
|
namespace "expo.modules.devlauncher"
|
|
33
33
|
defaultConfig {
|
|
34
34
|
versionCode 9
|
|
35
|
-
versionName "57.0.
|
|
35
|
+
versionName "57.0.5"
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
buildTypes {
|
|
@@ -112,6 +112,17 @@ struct DevServersView: View {
|
|
|
112
112
|
#endif
|
|
113
113
|
.disableAutocorrection(true)
|
|
114
114
|
.toolbar {
|
|
115
|
+
#if os(tvOS)
|
|
116
|
+
ToolbarItemGroup(placement: .automatic) {
|
|
117
|
+
ForEach(keyboardShortcuts, id: \.self) { shortcut in
|
|
118
|
+
Button {
|
|
119
|
+
urlText += shortcut
|
|
120
|
+
} label: {
|
|
121
|
+
Text(shortcut)
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
#else
|
|
115
126
|
ToolbarItemGroup(placement: .keyboard) {
|
|
116
127
|
ForEach(keyboardShortcuts, id: \.self) { shortcut in
|
|
117
128
|
Button {
|
|
@@ -121,6 +132,7 @@ struct DevServersView: View {
|
|
|
121
132
|
}
|
|
122
133
|
}
|
|
123
134
|
}
|
|
135
|
+
#endif
|
|
124
136
|
}
|
|
125
137
|
.padding(.horizontal, 16)
|
|
126
138
|
.padding(.vertical, 12)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-launcher",
|
|
3
3
|
"title": "Expo Development Launcher",
|
|
4
|
-
"version": "57.0.
|
|
4
|
+
"version": "57.0.5",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"homepage": "https://docs.expo.dev",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@expo/schema-utils": "^57.0.
|
|
19
|
-
"expo-dev-menu": "~57.0.
|
|
18
|
+
"@expo/schema-utils": "^57.0.1",
|
|
19
|
+
"expo-dev-menu": "~57.0.5",
|
|
20
20
|
"expo-manifests": "~57.0.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^22.14.0",
|
|
28
|
-
"expo": "57.0.
|
|
28
|
+
"expo": "57.0.2"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "5104cb89c3938bc9653e0cbad43da3a43a2e77a7",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build:plugin": "expo-module build plugin",
|
|
33
33
|
"expo-module": "expo-module"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["./src/index.ts","./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"6.0.2"}
|