expo-dev-client 6.0.13-canary-20250930-9dc59d3 → 6.0.13
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 +4 -0
- package/android/build.gradle +14 -14
- package/e2e/ios/AppDelegate.m +3 -4
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -8,13 +8,13 @@ expoModule {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
group = "host.exp.exponent"
|
|
11
|
-
version = "6.0.13
|
|
11
|
+
version = "6.0.13"
|
|
12
12
|
|
|
13
13
|
android {
|
|
14
14
|
namespace "expo.modules.devclient"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 1
|
|
17
|
-
versionName "6.0.13
|
|
17
|
+
versionName "6.0.13"
|
|
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.6.1')
|
|
50
|
+
androidTestImplementation('androidx.test:core:1.6.1')
|
|
51
|
+
androidTestImplementation('androidx.test:core-ktx:1.6.1')
|
|
52
|
+
androidTestImplementation('androidx.test.ext:junit:1.2.1')
|
|
53
|
+
androidTestImplementation('androidx.test.ext:junit-ktx:1.2.1')
|
|
54
|
+
androidTestImplementation('androidx.test:runner:1.6.2')
|
|
55
|
+
androidTestImplementation('androidx.test:rules:1.6.1')
|
|
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.4.3"
|
|
63
|
+
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1"
|
|
64
64
|
|
|
65
|
-
androidTestImplementation "androidx.appcompat:appcompat:1.7.
|
|
65
|
+
androidTestImplementation "androidx.appcompat:appcompat:1.7.0"
|
|
66
66
|
|
|
67
|
+
androidTestImplementation "com.google.truth:truth:1.1.2"
|
|
67
68
|
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.2.0'
|
|
73
73
|
}
|
package/e2e/ios/AppDelegate.m
CHANGED
|
@@ -44,8 +44,7 @@
|
|
|
44
44
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
45
45
|
|
|
46
46
|
EXDevLauncherController *controller = [EXDevLauncherController sharedInstance];
|
|
47
|
-
[controller
|
|
48
|
-
[controller startWithWindow:self.window];
|
|
47
|
+
[controller startWithWindow:self.window delegate:(id<EXDevLauncherControllerDelegate>)self launchOptions:launchOptions];
|
|
49
48
|
|
|
50
49
|
[super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
51
50
|
|
|
@@ -91,11 +90,11 @@
|
|
|
91
90
|
@end
|
|
92
91
|
|
|
93
92
|
@implementation AppDelegate (EXDevLauncherControllerDelegate)
|
|
94
|
-
|
|
93
|
+
|
|
95
94
|
- (void)devLauncherController:(EXDevLauncherController *)developmentClientController
|
|
96
95
|
didStartWithSuccess:(BOOL)success
|
|
97
96
|
{
|
|
98
97
|
developmentClientController.appBridge = [self initializeReactNativeApp];
|
|
99
98
|
}
|
|
100
|
-
|
|
99
|
+
|
|
101
100
|
@end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "6.0.13
|
|
3
|
+
"version": "6.0.13",
|
|
4
4
|
"description": "Expo Development Client",
|
|
5
5
|
"main": "build/DevClient.js",
|
|
6
6
|
"types": "build/DevClient.d.ts",
|
|
@@ -32,20 +32,21 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/dev-client/",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"expo-dev-launcher": "6.
|
|
36
|
-
"expo-dev-menu": "7.0.13
|
|
37
|
-
"expo-dev-menu-interface": "2.0.
|
|
38
|
-
"expo-manifests": "1.0.
|
|
39
|
-
"expo-updates-interface": "2.0.
|
|
35
|
+
"expo-dev-launcher": "6.0.13",
|
|
36
|
+
"expo-dev-menu": "7.0.13",
|
|
37
|
+
"expo-dev-menu-interface": "2.0.0",
|
|
38
|
+
"expo-manifests": "~1.0.8",
|
|
39
|
+
"expo-updates-interface": "~2.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"expo-module-scripts": "5.0.
|
|
43
|
-
"expo-test-runner": "0.3.
|
|
42
|
+
"expo-module-scripts": "^5.0.7",
|
|
43
|
+
"expo-test-runner": "0.3.7"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"expo": "
|
|
46
|
+
"expo": "*"
|
|
47
47
|
},
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
|
-
}
|
|
50
|
+
},
|
|
51
|
+
"gitHead": "1ab3b9621b78b77b81049ebf06149753a1e0898c"
|
|
51
52
|
}
|