expo-dev-launcher 6.0.13 → 6.0.14

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
+ ## 6.0.14 — 2025-10-09
14
+
15
+ ### 💡 Others
16
+
17
+ - [Android] Prevented the app from crashing during the initialization of the `ErrorViewModel`. ([#40148](https://github.com/expo/expo/pull/40148) by [@lukmccall](https://github.com/lukmccall))
18
+
13
19
  ## 6.0.13 — 2025-10-01
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -20,13 +20,13 @@ expoModule {
20
20
  }
21
21
 
22
22
  group = "host.exp.exponent"
23
- version = "6.0.13"
23
+ version = "6.0.14"
24
24
 
25
25
  android {
26
26
  namespace "expo.modules.devlauncher"
27
27
  defaultConfig {
28
28
  versionCode 9
29
- versionName "6.0.13"
29
+ versionName "6.0.14"
30
30
  }
31
31
 
32
32
  buildTypes {
@@ -14,8 +14,6 @@ sealed interface ErrorAction {
14
14
  }
15
15
 
16
16
  class ErrorViewModel() : ViewModel() {
17
- private val devLauncher = inject<DevLauncherController>()
18
-
19
17
  private val _appError = mutableStateOf<DevLauncherAppError?>(null)
20
18
 
21
19
  val appError
@@ -26,6 +24,8 @@ class ErrorViewModel() : ViewModel() {
26
24
  }
27
25
 
28
26
  fun onAction(action: ErrorAction) {
27
+ val devLauncher = inject<DevLauncherController>()
28
+
29
29
  when (action) {
30
30
  is ErrorAction.Reload -> {
31
31
  val appUrl = devLauncher.latestLoadedApp
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "6.0.13",
4
+ "version": "6.0.14",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -21,5 +21,5 @@
21
21
  "peerDependencies": {
22
22
  "expo": "*"
23
23
  },
24
- "gitHead": "1ab3b9621b78b77b81049ebf06149753a1e0898c"
24
+ "gitHead": "40027e7a62ecb3de1ec71ad497a4c51637c386e4"
25
25
  }