expo-dev-launcher 6.0.12-canary-20250912-b5ce2a8 → 6.1.0-canary-20250919-7a31b96
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
|
@@ -6,10 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
### 🎉 New features
|
|
8
8
|
|
|
9
|
+
- Remove `ExpoAppDelegate` inheritance requirement ([#39417](https://github.com/expo/expo/pull/39417) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
10
|
+
|
|
9
11
|
### 🐛 Bug fixes
|
|
10
12
|
|
|
11
13
|
### 💡 Others
|
|
12
14
|
|
|
15
|
+
- [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
|
|
16
|
+
|
|
13
17
|
## 6.0.11 — 2025-09-11
|
|
14
18
|
|
|
15
19
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -20,13 +20,13 @@ expoModule {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
group = "host.exp.exponent"
|
|
23
|
-
version = "6.0
|
|
23
|
+
version = "6.1.0-canary-20250919-7a31b96"
|
|
24
24
|
|
|
25
25
|
android {
|
|
26
26
|
namespace "expo.modules.devlauncher"
|
|
27
27
|
defaultConfig {
|
|
28
28
|
versionCode 9
|
|
29
|
-
versionName "6.0
|
|
29
|
+
versionName "6.1.0-canary-20250919-7a31b96"
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
buildTypes {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
1
2
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
2
3
|
|
|
3
4
|
plugins {
|
|
@@ -22,8 +23,8 @@ java {
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
tasks.withType<KotlinCompile> {
|
|
25
|
-
|
|
26
|
-
jvmTarget
|
|
26
|
+
compilerOptions {
|
|
27
|
+
jvmTarget.set(JvmTarget.JVM_11)
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -50,21 +50,21 @@ public class ExpoDevLauncherReactDelegateHandler: ExpoReactDelegateHandler, EXDe
|
|
|
50
50
|
// MARK: EXDevelopmentClientControllerDelegate implementations
|
|
51
51
|
|
|
52
52
|
public func devLauncherController(_ developmentClientController: EXDevLauncherController, didStartWithSuccess success: Bool) {
|
|
53
|
-
guard let
|
|
54
|
-
(
|
|
55
|
-
fatalError("`UIApplication.shared.delegate` must be an `ExpoAppDelegate` or `EXAppDelegateWrapper`")
|
|
53
|
+
guard let reactDelegate = self.reactDelegate else {
|
|
54
|
+
fatalError("`reactDelegate` should not be nil")
|
|
56
55
|
}
|
|
57
|
-
|
|
56
|
+
|
|
57
|
+
self.reactNativeFactory = reactDelegate.reactNativeFactory as? RCTReactNativeFactory
|
|
58
58
|
|
|
59
59
|
// Reset rctAppDelegate so we can relaunch the app
|
|
60
|
-
if
|
|
60
|
+
if RCTIsNewArchEnabled() {
|
|
61
61
|
self.reactNativeFactory?.rootViewFactory.setValue(nil, forKey: "_reactHost")
|
|
62
62
|
} else {
|
|
63
63
|
self.reactNativeFactory?.bridge = nil
|
|
64
64
|
self.reactNativeFactory?.rootViewFactory.bridge = nil
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
let rootView =
|
|
67
|
+
let rootView = reactDelegate.reactNativeFactory.recreateRootView(
|
|
68
68
|
withBundleURL: developmentClientController.sourceUrl(),
|
|
69
69
|
moduleName: self.rootViewModuleName,
|
|
70
70
|
initialProps: self.rootViewInitialProperties,
|
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
|
|
4
|
+
"version": "6.1.0-canary-20250919-7a31b96",
|
|
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.12-canary-
|
|
19
|
-
"expo-manifests": "1.0.9-canary-
|
|
18
|
+
"expo-dev-menu": "7.0.12-canary-20250919-7a31b96",
|
|
19
|
+
"expo-manifests": "1.0.9-canary-20250919-7a31b96"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"expo": "55.0.0-canary-
|
|
22
|
+
"expo": "55.0.0-canary-20250919-7a31b96"
|
|
23
23
|
}
|
|
24
24
|
}
|