expo-dev-client 3.3.4 → 3.3.6
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 +10 -0
- package/android/build.gradle +3 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 3.3.6 — 2024-01-18
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 3.3.5 — 2024-01-10
|
|
18
|
+
|
|
19
|
+
### 💡 Others
|
|
20
|
+
|
|
21
|
+
- Replace deprecated `com.facebook.react:react-native:+` Android dependency with `com.facebook.react:react-android`. ([#26237](https://github.com/expo/expo/pull/26237) by [@kudo](https://github.com/kudo))
|
|
22
|
+
|
|
13
23
|
## 3.3.4 — 2023-12-21
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -36,7 +36,7 @@ android {
|
|
|
36
36
|
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
37
37
|
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
38
38
|
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
39
|
-
|
|
39
|
+
|
|
40
40
|
defaultConfig {
|
|
41
41
|
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
42
42
|
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
@@ -51,7 +51,7 @@ android {
|
|
|
51
51
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
52
52
|
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
53
53
|
versionCode 1
|
|
54
|
-
versionName "3.3.
|
|
54
|
+
versionName "3.3.6"
|
|
55
55
|
|
|
56
56
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
57
57
|
}
|
|
@@ -119,8 +119,7 @@ dependencies {
|
|
|
119
119
|
androidTestImplementation project(":expo-dev-launcher")
|
|
120
120
|
androidTestImplementation project(":expo-manifests")
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
androidTestImplementation 'com.facebook.react:react-native:+' // From node_modules
|
|
122
|
+
androidTestImplementation 'com.facebook.react:react-android'
|
|
124
123
|
|
|
125
124
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.4.0')
|
|
126
125
|
androidTestImplementation('androidx.test:core:1.4.0')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.6",
|
|
4
4
|
"description": "Expo Development Client",
|
|
5
5
|
"main": "build/DevClient.js",
|
|
6
6
|
"types": "build/DevClient.d.ts",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"homepage": "https://docs.expo.dev/clients/introduction/",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"expo-dev-launcher": "3.6.
|
|
36
|
-
"expo-dev-menu": "4.5.
|
|
37
|
-
"expo-dev-menu-interface": "1.7.
|
|
35
|
+
"expo-dev-launcher": "3.6.3",
|
|
36
|
+
"expo-dev-menu": "4.5.4",
|
|
37
|
+
"expo-dev-menu-interface": "1.7.2",
|
|
38
38
|
"expo-manifests": "~0.13.0",
|
|
39
39
|
"expo-updates-interface": "~0.15.1"
|
|
40
40
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "d4c47e4b1686f07bce39593eee5aaea52bf03e3b"
|
|
52
52
|
}
|