expo-dev-client 4.0.0 → 4.0.2
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
|
+
## 4.0.2 — 2024-04-22
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 4.0.1 — 2024-04-19
|
|
18
|
+
|
|
19
|
+
### 🎉 New features
|
|
20
|
+
|
|
21
|
+
- Added bridgeless mode support on Android. ([#28162](https://github.com/expo/expo/pull/28162) by [@kudo](https://github.com/kudo))
|
|
22
|
+
|
|
13
23
|
## 4.0.0 — 2024-04-18
|
|
14
24
|
|
|
15
25
|
### 💡 Others
|
package/android/build.gradle
CHANGED
|
@@ -10,7 +10,7 @@ android {
|
|
|
10
10
|
namespace "expo.modules.devclient"
|
|
11
11
|
defaultConfig {
|
|
12
12
|
versionCode 1
|
|
13
|
-
versionName "4.0.
|
|
13
|
+
versionName "4.0.2"
|
|
14
14
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -45,6 +45,7 @@ dependencies {
|
|
|
45
45
|
androidTestImplementation project(":expo-manifests")
|
|
46
46
|
|
|
47
47
|
androidTestImplementation 'com.facebook.react:react-android'
|
|
48
|
+
androidTestImplementation 'com.facebook.react:hermes-android'
|
|
48
49
|
|
|
49
50
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.4.0')
|
|
50
51
|
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": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
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": "4.0.
|
|
36
|
-
"expo-dev-menu": "5.0.
|
|
37
|
-
"expo-dev-menu-interface": "1.8.
|
|
35
|
+
"expo-dev-launcher": "4.0.2",
|
|
36
|
+
"expo-dev-menu": "5.0.2",
|
|
37
|
+
"expo-dev-menu-interface": "1.8.2",
|
|
38
38
|
"expo-manifests": "~0.14.0",
|
|
39
39
|
"expo-updates-interface": "~0.16.0"
|
|
40
40
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "0897aeadb926491a457bcd67d83360956994ee82"
|
|
52
52
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = getDefaultScheme;
|
|
4
3
|
/*
|
|
5
4
|
* Converts the slug from app configuration to a string that's a valid URI scheme.
|
|
6
5
|
* From RFC3986 Section 3.1.
|
|
@@ -24,3 +23,4 @@ function getDefaultScheme(config) {
|
|
|
24
23
|
// Add a prefix to avoid leading digits and to distinguish from user-defined schemes.
|
|
25
24
|
return `exp+${scheme}`;
|
|
26
25
|
}
|
|
26
|
+
exports.default = getDefaultScheme;
|
|
@@ -3,9 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.withGeneratedAndroidScheme = void 0;
|
|
7
|
-
exports.setGeneratedAndroidScheme = setGeneratedAndroidScheme;
|
|
8
|
-
exports.removeExpoSchemaFromVerifiedIntentFilters = removeExpoSchemaFromVerifiedIntentFilters;
|
|
6
|
+
exports.removeExpoSchemaFromVerifiedIntentFilters = exports.setGeneratedAndroidScheme = exports.withGeneratedAndroidScheme = void 0;
|
|
9
7
|
const config_plugins_1 = require("@expo/config-plugins");
|
|
10
8
|
const getDefaultScheme_1 = __importDefault(require("./getDefaultScheme"));
|
|
11
9
|
const withGeneratedAndroidScheme = (config) => {
|
|
@@ -24,6 +22,7 @@ function setGeneratedAndroidScheme(config, androidManifest) {
|
|
|
24
22
|
}
|
|
25
23
|
return androidManifest;
|
|
26
24
|
}
|
|
25
|
+
exports.setGeneratedAndroidScheme = setGeneratedAndroidScheme;
|
|
27
26
|
/**
|
|
28
27
|
* Remove the custom Expo dev client scheme from intent filters, which are set to `autoVerify=true`.
|
|
29
28
|
* The custom scheme `<data android:scheme="exp+<slug>"/>` seems to block verification for these intent filters.
|
|
@@ -51,6 +50,7 @@ function removeExpoSchemaFromVerifiedIntentFilters(config, androidManifest) {
|
|
|
51
50
|
}
|
|
52
51
|
return androidManifest;
|
|
53
52
|
}
|
|
53
|
+
exports.removeExpoSchemaFromVerifiedIntentFilters = removeExpoSchemaFromVerifiedIntentFilters;
|
|
54
54
|
/**
|
|
55
55
|
* Determine if the activity should contain the intent filters to clean.
|
|
56
56
|
*
|
|
@@ -3,8 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.withGeneratedIosScheme = void 0;
|
|
7
|
-
exports.setGeneratedIosScheme = setGeneratedIosScheme;
|
|
6
|
+
exports.setGeneratedIosScheme = exports.withGeneratedIosScheme = void 0;
|
|
8
7
|
const config_plugins_1 = require("@expo/config-plugins");
|
|
9
8
|
const getDefaultScheme_1 = __importDefault(require("./getDefaultScheme"));
|
|
10
9
|
const withGeneratedIosScheme = (config) => {
|
|
@@ -22,3 +21,4 @@ function setGeneratedIosScheme(config, infoPlist) {
|
|
|
22
21
|
}
|
|
23
22
|
return infoPlist;
|
|
24
23
|
}
|
|
24
|
+
exports.setGeneratedIosScheme = setGeneratedIosScheme;
|