expo-dev-client 3.3.4 → 3.3.5

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.3.5 — 2024-01-10
14
+
15
+ ### 💡 Others
16
+
17
+ - 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))
18
+
13
19
  ## 3.3.4 — 2023-12-21
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -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.4"
54
+ versionName "3.3.5"
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
- //noinspection GradleDynamicVersion
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.4",
3
+ "version": "3.3.5",
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.1",
36
- "expo-dev-menu": "4.5.2",
37
- "expo-dev-menu-interface": "1.7.1",
35
+ "expo-dev-launcher": "3.6.2",
36
+ "expo-dev-menu": "4.5.3",
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": "36402c8b2bc9b63f003c04642d97bf091b35fe16"
51
+ "gitHead": "ca014bf2516c7644ef303f4c21fdd68de4d99f76"
52
52
  }