expo-dev-launcher 55.0.9 → 55.0.10

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.10 — 2026-02-25
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 55.0.9 — 2026-02-25
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "55.0.9"
29
+ version = "55.0.10"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "55.0.9"
35
+ versionName "55.0.10"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -337,7 +337,7 @@ class DevLauncherViewModel: ObservableObject {
337
337
  }
338
338
 
339
339
  browser?.browseResultsChangedHandler = { [weak self] results, _ in
340
- guard let self = self else { return }
340
+ guard let self else { return }
341
341
  Task { @MainActor [weak self, results] in
342
342
  guard let self else { return }
343
343
  self.markNetworkPermissionGranted()
@@ -17,9 +17,11 @@ struct LocalNetworkPermissionView: View {
17
17
  }
18
18
 
19
19
  var body: some View {
20
- VStack(spacing: 0) {
21
- Spacer()
22
-
20
+ ZStack {
21
+ Color
22
+ .expoSystemBackground
23
+ .ignoresSafeArea(.all)
24
+
23
25
  VStack(spacing: 24) {
24
26
  Image("radar-icon", bundle: getDevLauncherBundle())
25
27
  .resizable()
@@ -46,18 +48,8 @@ struct LocalNetworkPermissionView: View {
46
48
  }
47
49
  }
48
50
  }
49
-
50
- Spacer()
51
-
52
- HStack(alignment: .firstTextBaseline) {
53
- Image(systemName: "info.circle")
54
- Text("Dev servers advertise themselves on your local network using Bonjour. This permission allows the development client to discover them automatically.")
55
- .fontWeight(.semibold)
56
- }
57
- .foregroundColor(.secondary)
51
+ .padding()
58
52
  }
59
- .padding()
60
- .background(Color.expoSystemBackground)
61
53
  .alert("Permission Not Granted", isPresented: $showTryAgainFailedAlert) {
62
54
  Button("Open Settings") {
63
55
  #if os(iOS)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "55.0.9",
4
+ "version": "55.0.10",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -16,11 +16,11 @@
16
16
  "homepage": "https://docs.expo.dev",
17
17
  "dependencies": {
18
18
  "@expo/schema-utils": "^55.0.2",
19
- "expo-dev-menu": "55.0.8",
19
+ "expo-dev-menu": "55.0.9",
20
20
  "expo-manifests": "~55.0.9"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "expo": "*"
24
24
  },
25
- "gitHead": "b183e5cbd95eb6ee54a878291c7077d8d63e4850"
25
+ "gitHead": "39a7a009e215eb71a112f4a20dba2d471ab21108"
26
26
  }