expo-dev-client 2.4.8 → 3.1.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 +10 -10
- package/README.md +1 -1
- package/android/build.gradle +11 -7
- package/package.json +8 -8
- package/plugin/src/withDevClient.ts +1 -1
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,25 +10,25 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## 3.1.0 — 2023-09-04
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
### 🎉 New features
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
- Added support for React Native 0.73. ([#24018](https://github.com/expo/expo/pull/24018) by [@kudo](https://github.com/kudo))
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
### 💡 Others
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
- Migrate to Expo CLI. ([#23806](https://github.com/expo/expo/pull/23806) by [@EvanBacon](https://github.com/EvanBacon))
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## 2.4.4 — 2023-07-05
|
|
23
|
+
## 3.0.0 — 2023-08-02
|
|
26
24
|
|
|
27
25
|
_This version does not introduce any user-facing changes._
|
|
28
26
|
|
|
29
|
-
## 2.4.
|
|
27
|
+
## 2.4.7 — 2023-07-26
|
|
30
28
|
|
|
31
|
-
|
|
29
|
+
### 🐛 Bug fixes
|
|
30
|
+
|
|
31
|
+
- Fixed compatibility with the Reanimated 3.4.0 on iOS. ([#23726](https://github.com/expo/expo/pull/23726) by [@piaskowyk](https://github.com/piaskowyk))
|
|
32
32
|
|
|
33
33
|
## 2.4.2 — 2023-06-28
|
|
34
34
|
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ next time you need to upgrade, install a new module, or otherwise change the nat
|
|
|
12
12
|
|
|
13
13
|
## Documentation
|
|
14
14
|
|
|
15
|
-
You can find more information in the [Expo documentation](https://docs.expo.dev/
|
|
15
|
+
You can find more information in the [Expo documentation](https://docs.expo.dev/develop/development-builds/introduction).
|
|
16
16
|
|
|
17
17
|
## Issues
|
|
18
18
|
|
package/android/build.gradle
CHANGED
|
@@ -39,20 +39,23 @@ android {
|
|
|
39
39
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
40
40
|
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
41
41
|
versionCode 1
|
|
42
|
-
versionName "
|
|
42
|
+
versionName "3.1.0"
|
|
43
43
|
|
|
44
44
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
45
45
|
}
|
|
46
46
|
lintOptions {
|
|
47
47
|
abortOnError false
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
|
|
50
|
+
if (agpVersion.tokenize('.')[0].toInteger() < 8) {
|
|
51
|
+
compileOptions {
|
|
52
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
53
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
54
|
+
}
|
|
53
55
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
+
kotlinOptions {
|
|
57
|
+
jvmTarget = JavaVersion.VERSION_11.majorVersion
|
|
58
|
+
}
|
|
56
59
|
}
|
|
57
60
|
|
|
58
61
|
buildTypes {
|
|
@@ -73,6 +76,7 @@ android {
|
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
buildFeatures {
|
|
79
|
+
buildConfig true
|
|
76
80
|
viewBinding true
|
|
77
81
|
}
|
|
78
82
|
publishing {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.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": "
|
|
36
|
-
"expo-dev-menu": "
|
|
37
|
-
"expo-dev-menu-interface": "1.
|
|
38
|
-
"expo-manifests": "~0.
|
|
39
|
-
"expo-updates-interface": "~0.
|
|
35
|
+
"expo-dev-launcher": "3.1.0",
|
|
36
|
+
"expo-dev-menu": "4.1.0",
|
|
37
|
+
"expo-dev-menu-interface": "1.4.0",
|
|
38
|
+
"expo-manifests": "~0.9.0",
|
|
39
|
+
"expo-updates-interface": "~0.12.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.17"
|
|
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": "79607a7325f47aa17c36d266100d09a4ff2cc544"
|
|
52
52
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { createRunOncePlugin } from '@expo/config-plugins';
|
|
2
|
+
import { ExpoConfig } from 'expo/config';
|
|
2
3
|
// @ts-expect-error missing types
|
|
3
4
|
import withDevLauncher from 'expo-dev-launcher/app.plugin';
|
|
4
5
|
// @ts-expect-error missing types
|
|
5
6
|
import withDevMenu from 'expo-dev-menu/app.plugin';
|
|
6
|
-
import { ExpoConfig } from 'expo/config';
|
|
7
7
|
|
|
8
8
|
import { withGeneratedAndroidScheme } from './withGeneratedAndroidScheme';
|
|
9
9
|
import { withGeneratedIosScheme } from './withGeneratedIosScheme';
|
package/tsconfig.json
CHANGED