expo-dev-client 6.0.16 → 6.0.17-canary-20251023-4c86f95
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 +1 -13
- package/android/build.gradle +14 -14
- package/e2e/ios/AppDelegate.m +4 -3
- package/package.json +10 -11
package/CHANGELOG.md
CHANGED
|
@@ -10,19 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
## 6.0.
|
|
14
|
-
|
|
15
|
-
_This version does not introduce any user-facing changes._
|
|
16
|
-
|
|
17
|
-
## 6.0.15 — 2025-10-10
|
|
18
|
-
|
|
19
|
-
_This version does not introduce any user-facing changes._
|
|
20
|
-
|
|
21
|
-
## 6.0.14 — 2025-10-09
|
|
22
|
-
|
|
23
|
-
_This version does not introduce any user-facing changes._
|
|
24
|
-
|
|
25
|
-
## 6.0.13 — 2025-10-01
|
|
13
|
+
## 6.0.13 - 2025-10-01
|
|
26
14
|
|
|
27
15
|
_This version does not introduce any user-facing changes._
|
|
28
16
|
|
package/android/build.gradle
CHANGED
|
@@ -8,13 +8,13 @@ expoModule {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
group = "host.exp.exponent"
|
|
11
|
-
version = "6.0.
|
|
11
|
+
version = "6.0.17-canary-20251023-4c86f95"
|
|
12
12
|
|
|
13
13
|
android {
|
|
14
14
|
namespace "expo.modules.devclient"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 1
|
|
17
|
-
versionName "6.0.
|
|
17
|
+
versionName "6.0.17-canary-20251023-4c86f95"
|
|
18
18
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -46,28 +46,28 @@ dependencies {
|
|
|
46
46
|
androidTestImplementation 'com.facebook.react:react-android'
|
|
47
47
|
androidTestImplementation 'com.facebook.react:hermes-android'
|
|
48
48
|
|
|
49
|
-
androidTestImplementation('androidx.test.espresso:espresso-core:3.
|
|
50
|
-
androidTestImplementation('androidx.test:core:1.
|
|
51
|
-
androidTestImplementation('androidx.test:core-ktx:1.
|
|
52
|
-
androidTestImplementation('androidx.test.ext:junit:1.
|
|
53
|
-
androidTestImplementation('androidx.test.ext:junit-ktx:1.
|
|
54
|
-
androidTestImplementation('androidx.test:runner:1.
|
|
55
|
-
androidTestImplementation('androidx.test:rules:1.
|
|
49
|
+
androidTestImplementation('androidx.test.espresso:espresso-core:3.7.0')
|
|
50
|
+
androidTestImplementation('androidx.test:core:1.7.0')
|
|
51
|
+
androidTestImplementation('androidx.test:core-ktx:1.7.0')
|
|
52
|
+
androidTestImplementation('androidx.test.ext:junit:1.3.0')
|
|
53
|
+
androidTestImplementation('androidx.test.ext:junit-ktx:1.3.0')
|
|
54
|
+
androidTestImplementation('androidx.test:runner:1.7.0')
|
|
55
|
+
androidTestImplementation('androidx.test:rules:1.7.0')
|
|
56
56
|
|
|
57
57
|
androidTestImplementation 'org.webkit:android-jsc:+'
|
|
58
58
|
|
|
59
59
|
androidTestImplementation "io.insert-koin:koin-test:3.1.2"
|
|
60
60
|
androidTestImplementation "io.insert-koin:koin-test-junit4:3.1.2"
|
|
61
61
|
|
|
62
|
-
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.
|
|
63
|
-
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.
|
|
62
|
+
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2"
|
|
63
|
+
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
|
|
64
64
|
|
|
65
|
-
androidTestImplementation "androidx.appcompat:appcompat:1.7.
|
|
65
|
+
androidTestImplementation "androidx.appcompat:appcompat:1.7.1"
|
|
66
66
|
|
|
67
|
-
androidTestImplementation "com.google.truth:truth:1.1.2"
|
|
68
67
|
androidTestImplementation 'io.mockk:mockk-android:1.13.11'
|
|
68
|
+
androidTestImplementation "com.google.truth:truth:1.4.5"
|
|
69
69
|
|
|
70
70
|
// Fixes "e: java.lang.AssertionError: No such enum entry LIBRARY_GROUP_PREFIX in org.jetbrains.kotlin.ir.types.impl.IrSimpleTypeImpl@b254b575"
|
|
71
71
|
// According to the https://stackoverflow.com/a/67736351
|
|
72
|
-
implementation 'androidx.annotation:annotation:1.
|
|
72
|
+
implementation 'androidx.annotation:annotation:1.9.1'
|
|
73
73
|
}
|
package/e2e/ios/AppDelegate.m
CHANGED
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
45
45
|
|
|
46
46
|
EXDevLauncherController *controller = [EXDevLauncherController sharedInstance];
|
|
47
|
-
[controller
|
|
47
|
+
[controller autoSetupPrepare:(id<EXDevLauncherControllerDelegate>)self launchOptions:launchOptions];
|
|
48
|
+
[controller startWithWindow:self.window];
|
|
48
49
|
|
|
49
50
|
[super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
50
51
|
|
|
@@ -90,11 +91,11 @@
|
|
|
90
91
|
@end
|
|
91
92
|
|
|
92
93
|
@implementation AppDelegate (EXDevLauncherControllerDelegate)
|
|
93
|
-
|
|
94
|
+
|
|
94
95
|
- (void)devLauncherController:(EXDevLauncherController *)developmentClientController
|
|
95
96
|
didStartWithSuccess:(BOOL)success
|
|
96
97
|
{
|
|
97
98
|
developmentClientController.appBridge = [self initializeReactNativeApp];
|
|
98
99
|
}
|
|
99
|
-
|
|
100
|
+
|
|
100
101
|
@end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.17-canary-20251023-4c86f95",
|
|
4
4
|
"description": "Expo Development Client",
|
|
5
5
|
"main": "build/DevClient.js",
|
|
6
6
|
"types": "build/DevClient.d.ts",
|
|
@@ -32,21 +32,20 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/dev-client/",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"expo-dev-launcher": "6.0
|
|
36
|
-
"expo-dev-menu": "7.0.
|
|
37
|
-
"expo-dev-menu-interface": "2.0.
|
|
38
|
-
"expo-manifests": "
|
|
39
|
-
"expo-updates-interface": "
|
|
35
|
+
"expo-dev-launcher": "6.1.0-canary-20251023-4c86f95",
|
|
36
|
+
"expo-dev-menu": "7.0.16-canary-20251023-4c86f95",
|
|
37
|
+
"expo-dev-menu-interface": "2.0.1-canary-20251023-4c86f95",
|
|
38
|
+
"expo-manifests": "1.0.9-canary-20251023-4c86f95",
|
|
39
|
+
"expo-updates-interface": "2.0.1-canary-20251023-4c86f95"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"expo-module-scripts": "
|
|
43
|
-
"expo-test-runner": "0.3.
|
|
42
|
+
"expo-module-scripts": "5.0.8-canary-20251023-4c86f95",
|
|
43
|
+
"expo-test-runner": "0.3.8-canary-20251023-4c86f95"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"expo": "
|
|
46
|
+
"expo": "55.0.0-canary-20251023-4c86f95"
|
|
47
47
|
},
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
|
-
}
|
|
51
|
-
"gitHead": "766a9f82822b79e266f177e78ec143f3683b0688"
|
|
50
|
+
}
|
|
52
51
|
}
|