expo-dev-client 2.2.1 → 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/.detoxrc.js CHANGED
@@ -18,7 +18,7 @@ module.exports = {
18
18
  emulator: {
19
19
  type: 'android.emulator',
20
20
  device: {
21
- avdName: 'avd-31',
21
+ avdName: 'avd-33',
22
22
  },
23
23
  },
24
24
  simulator: {
package/CHANGELOG.md CHANGED
@@ -10,21 +10,21 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
- ## 2.2.1 — 2023-04-14
13
+ ## 2.4.0 — 2023-06-21
14
14
 
15
- _This version does not introduce any user-facing changes._
15
+ ### 🐛 Bug fixes
16
16
 
17
- ## 2.2.0 2023-04-13
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
18
 
19
- _This version does not introduce any user-facing changes._
19
+ ### 💡 Others
20
20
 
21
- ## 2.1.6 2023-03-20
21
+ - Bump `babel-plugin-module-resolver` dev dependency. ([#22871](https://github.com/expo/expo/pull/22871) by [@EvanBacon](https://github.com/EvanBacon))
22
22
 
23
- _This version does not introduce any user-facing changes._
23
+ ## 2.3.0 2023-05-08
24
24
 
25
- ## 2.1.5 — 2023-03-03
25
+ ### 💡 Others
26
26
 
27
- _This version does not introduce any user-facing changes._
27
+ - Update e2e tests to use custom entry file system. ([#21643](https://github.com/expo/expo/pull/21643) by [@EvanBacon](https://github.com/EvanBacon))
28
28
 
29
29
  ## 2.1.4 — 2023-02-28
30
30
 
package/README.md CHANGED
@@ -1,11 +1,18 @@
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.
5
12
 
6
13
  ## Documentation
7
14
 
8
- You can find the documentation under [https://docs.expo.dev/clients/introduction](https://docs.expo.dev/clients/introduction).
15
+ You can find more information in the [Expo documentation](https://docs.expo.dev/home/develop/development-builds/introduction).
9
16
 
10
17
  ## Issues
11
18
 
@@ -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.2.1"
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>
@@ -38,7 +38,7 @@ public class MainApplication extends Application implements ReactApplication {
38
38
 
39
39
  @Override
40
40
  protected String getJSMainModuleName() {
41
- return "index";
41
+ return ".expo/.virtual-metro-entry";
42
42
  }
43
43
  });
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-client",
3
- "version": "2.2.1",
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.2.1",
36
- "expo-dev-menu": "2.2.0",
37
- "expo-dev-menu-interface": "1.1.1",
38
- "expo-manifests": "~0.5.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.13"
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": "c2844fb61469eb300c4fb1afff78db7d75190201"
51
+ "gitHead": "fa5ecca8251986b9f197cc14074eec0ab6dfb6db"
52
52
  }