expo-dev-client 2.3.0 → 2.4.0

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.4.0 — 2023-06-21
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed Android build warnings for Gradle version 8. ([#22537](https://github.com/expo/expo/pull/22537), [#22609](https://github.com/expo/expo/pull/22609) by [@kudo](https://github.com/kudo))
18
+
19
+ ### 💡 Others
20
+
21
+ - Bump `babel-plugin-module-resolver` dev dependency. ([#22871](https://github.com/expo/expo/pull/22871) by [@EvanBacon](https://github.com/EvanBacon))
22
+
13
23
  ## 2.3.0 — 2023-05-08
14
24
 
15
25
  ### 💡 Others
package/README.md CHANGED
@@ -1,4 +1,11 @@
1
- # expo-dev-client
1
+ <p>
2
+ <a href="https://docs.expo.dev/develop/development-builds/introduction/">
3
+ <img
4
+ src="../../.github/resources/expo-dev-client.svg"
5
+ alt="expo-dev-client"
6
+ height="64" />
7
+ </a>
8
+ </p>
2
9
 
3
10
  `expo-dev-client` is an npm package installable in any Expo or React Native project. Once installed, Debug builds of your application will gain an extensible debug menu and the ability to load projects from Expo CLI. Release builds of your application will not change other than the addition of a few header files. Your debug builds can be shared with anyone on your team who needs to work on or review your application. Your team can develop the JavaScript portion of your application with expo-cli and your custom client without waiting for your native code to build until the
4
11
  next time you need to upgrade, install a new module, or otherwise change the native code in your project.
@@ -13,4 +20,4 @@ If you encounter any issues using this package in your project, please [report y
13
20
 
14
21
  ## Contributing
15
22
 
16
- Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing).
23
+ Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing).
@@ -34,11 +34,12 @@ buildscript {
34
34
 
35
35
  android {
36
36
  compileSdkVersion safeExtGet("compileSdkVersion", 33)
37
+ namespace "expo.modules.devclient"
37
38
  defaultConfig {
38
39
  minSdkVersion safeExtGet('minSdkVersion', 21)
39
40
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
40
41
  versionCode 1
41
- versionName "2.3.0"
42
+ versionName "2.4.0"
42
43
 
43
44
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
44
45
  }
@@ -74,6 +75,11 @@ android {
74
75
  buildFeatures {
75
76
  viewBinding true
76
77
  }
78
+ publishing {
79
+ singleVariant("release") {
80
+ withSourcesJar()
81
+ }
82
+ }
77
83
  }
78
84
 
79
85
  repositories {
@@ -1 +1,2 @@
1
- <manifest package="expo.modules.devclient" />
1
+ <manifest>
2
+ </manifest>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-client",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "Expo Development Client",
5
5
  "main": "build/DevClient.js",
6
6
  "types": "build/DevClient.d.ts",
@@ -32,15 +32,15 @@
32
32
  "license": "MIT",
33
33
  "homepage": "https://docs.expo.dev/clients/introduction/",
34
34
  "dependencies": {
35
- "expo-dev-launcher": "2.3.0",
36
- "expo-dev-menu": "3.0.0",
37
- "expo-dev-menu-interface": "1.2.0",
38
- "expo-manifests": "~0.6.0",
39
- "expo-updates-interface": "~0.9.0"
35
+ "expo-dev-launcher": "2.4.0",
36
+ "expo-dev-menu": "3.1.0",
37
+ "expo-dev-menu-interface": "1.3.0",
38
+ "expo-manifests": "~0.7.0",
39
+ "expo-updates-interface": "~0.10.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "expo-module-scripts": "^3.0.0",
43
- "expo-test-runner": "0.0.14"
43
+ "expo-test-runner": "0.0.15"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "expo": "*"
@@ -48,5 +48,5 @@
48
48
  "jest": {
49
49
  "preset": "expo-module-scripts"
50
50
  },
51
- "gitHead": "4ba50c428c8369bb6b3a51a860d4898ad4ccbe78"
51
+ "gitHead": "fa5ecca8251986b9f197cc14074eec0ab6dfb6db"
52
52
  }