expo-dev-client 2.3.0 → 2.4.1
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 +14 -0
- package/README.md +9 -2
- package/android/build.gradle +7 -1
- package/android/src/main/AndroidManifest.xml +2 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 2.4.1 — 2023-06-23
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 2.4.0 — 2023-06-21
|
|
18
|
+
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
|
+
|
|
21
|
+
- 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))
|
|
22
|
+
|
|
23
|
+
### 💡 Others
|
|
24
|
+
|
|
25
|
+
- Bump `babel-plugin-module-resolver` dev dependency. ([#22871](https://github.com/expo/expo/pull/22871) by [@EvanBacon](https://github.com/EvanBacon))
|
|
26
|
+
|
|
13
27
|
## 2.3.0 — 2023-05-08
|
|
14
28
|
|
|
15
29
|
### 💡 Others
|
package/README.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
|
|
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).
|
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
42
|
+
versionName "2.4.1"
|
|
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
|
|
1
|
+
<manifest>
|
|
2
|
+
</manifest>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
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.
|
|
36
|
-
"expo-dev-menu": "3.
|
|
37
|
-
"expo-dev-menu-interface": "1.
|
|
38
|
-
"expo-manifests": "~0.
|
|
39
|
-
"expo-updates-interface": "~0.
|
|
35
|
+
"expo-dev-launcher": "2.4.2",
|
|
36
|
+
"expo-dev-menu": "3.1.2",
|
|
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.
|
|
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": "
|
|
51
|
+
"gitHead": "a72ae33519fe54eaf195dc3e61a49db8345103db"
|
|
52
52
|
}
|