expo-dev-launcher 6.1.0-canary-20250930-9dc59d3 → 6.1.0-canary-20251008-6acbc1c
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
|
@@ -7,16 +7,30 @@
|
|
|
7
7
|
### 🎉 New features
|
|
8
8
|
|
|
9
9
|
- Remove `ExpoAppDelegate` inheritance requirement ([#39417](https://github.com/expo/expo/pull/39417) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
10
|
-
- [Android] Adds loading state when connecting to a development server. ([#39873](https://github.com/expo/expo/pull/39873) by [@lukmccall](https://github.com/lukmccall))
|
|
11
10
|
|
|
12
11
|
### 🐛 Bug fixes
|
|
13
12
|
|
|
14
|
-
- [expo-dev-launcher] Fix manual URL entry: decode percent-encoded URLs, enable return key submit, and support dark mode text. ([#39840](https://github.com/expo/expo/pull/39840) by [@blazejkustra](https://github.com/blazejkustra))
|
|
15
|
-
- [iOS] Adjust tvOS colors. ([#40006](https://github.com/expo/expo/pull/40006) by [@douglowder](https://github.com/douglowder))
|
|
16
|
-
|
|
17
13
|
### 💡 Others
|
|
18
14
|
|
|
19
15
|
- [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
|
|
16
|
+
- [android] Make reactNativeHost optional in ReactHostWrapper ([#40085](https://github.com/expo/expo/pull/40085) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
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
|
+
|
|
19
|
+
## 6.0.13 - 2025-10-01
|
|
20
|
+
|
|
21
|
+
### 🐛 Bug fixes
|
|
22
|
+
|
|
23
|
+
- [iOS] Adjust tvOS colors. ([#40006](https://github.com/expo/expo/pull/40006) by [@douglowder](https://github.com/douglowder))
|
|
24
|
+
|
|
25
|
+
## 6.0.12 - 2025-09-22
|
|
26
|
+
|
|
27
|
+
### 🎉 New features
|
|
28
|
+
|
|
29
|
+
- [Android] Adds loading state when connecting to a development server. ([#39873](https://github.com/expo/expo/pull/39873) by [@lukmccall](https://github.com/lukmccall))
|
|
30
|
+
|
|
31
|
+
### 🐛 Bug fixes
|
|
32
|
+
|
|
33
|
+
- [expo-dev-launcher] Fix manual URL entry: decode percent-encoded URLs, enable return key submit, and support dark mode text. ([#39840](https://github.com/expo/expo/pull/39840) by [@blazejkustra](https://github.com/blazejkustra))
|
|
20
34
|
|
|
21
35
|
## 6.0.11 — 2025-09-11
|
|
22
36
|
|
package/android/build.gradle
CHANGED
|
@@ -20,13 +20,13 @@ expoModule {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
group = "host.exp.exponent"
|
|
23
|
-
version = "6.1.0-canary-
|
|
23
|
+
version = "6.1.0-canary-20251008-6acbc1c"
|
|
24
24
|
|
|
25
25
|
android {
|
|
26
26
|
namespace "expo.modules.devlauncher"
|
|
27
27
|
defaultConfig {
|
|
28
28
|
versionCode 9
|
|
29
|
-
versionName "6.1.0-canary-
|
|
29
|
+
versionName "6.1.0-canary-20251008-6acbc1c"
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
buildTypes {
|
|
@@ -471,7 +471,7 @@ class DevLauncherController private constructor() :
|
|
|
471
471
|
|
|
472
472
|
@JvmStatic
|
|
473
473
|
fun initialize(reactApplication: ReactApplication, additionalPackages: List<ReactPackage>? = null, launcherClass: Class<*>? = null) {
|
|
474
|
-
initialize(reactApplication as Context, ReactHostWrapper(
|
|
474
|
+
initialize(reactApplication as Context, ReactHostWrapper(null, { reactApplication.reactHost }))
|
|
475
475
|
sAdditionalPackages = additionalPackages
|
|
476
476
|
sLauncherClass = launcherClass
|
|
477
477
|
}
|
|
@@ -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.1.0-canary-
|
|
4
|
+
"version": "6.1.0-canary-20251008-6acbc1c",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"homepage": "https://docs.expo.dev",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"expo-dev-menu": "7.0.
|
|
19
|
-
"expo-manifests": "1.0.9-canary-
|
|
18
|
+
"expo-dev-menu": "7.0.14-canary-20251008-6acbc1c",
|
|
19
|
+
"expo-manifests": "1.0.9-canary-20251008-6acbc1c"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"expo": "55.0.0-canary-
|
|
22
|
+
"expo": "55.0.0-canary-20251008-6acbc1c"
|
|
23
23
|
}
|
|
24
24
|
}
|