expo-dev-client 0.8.2 → 0.8.3
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 +6 -0
- package/android/build.gradle +2 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.8.3 — 2022-02-01
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix `Plugin with id 'maven' not found` build error from Android Gradle 7. ([#16080](https://github.com/expo/expo/pull/16080) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
13
19
|
## 0.8.2 — 2022-01-18
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
apply plugin: 'kotlin-android'
|
|
3
|
-
apply plugin: 'maven'
|
|
3
|
+
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
buildscript {
|
|
6
6
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
@@ -23,7 +23,7 @@ android {
|
|
|
23
23
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
24
24
|
targetSdkVersion safeExtGet('targetSdkVersion', 30)
|
|
25
25
|
versionCode 1
|
|
26
|
-
versionName "0.8.
|
|
26
|
+
versionName "0.8.3"
|
|
27
27
|
|
|
28
28
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
29
29
|
}
|
|
@@ -108,4 +108,3 @@ dependencies {
|
|
|
108
108
|
androidTestImplementation "com.google.truth:truth:1.1.2"
|
|
109
109
|
androidTestImplementation 'io.mockk:mockk-android:1.10.6'
|
|
110
110
|
}
|
|
111
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
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
|
"homepage": "https://docs.expo.dev/clients/introduction/",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@expo/config-plugins": "^4.0.14",
|
|
35
|
-
"expo-dev-launcher": "0.10.
|
|
36
|
-
"expo-dev-menu": "0.9.
|
|
37
|
-
"expo-dev-menu-interface": "0.5.
|
|
35
|
+
"expo-dev-launcher": "0.10.3",
|
|
36
|
+
"expo-dev-menu": "0.9.3",
|
|
37
|
+
"expo-dev-menu-interface": "0.5.3",
|
|
38
38
|
"expo-manifests": "~0.2.2",
|
|
39
39
|
"expo-updates-interface": "~0.5.0"
|
|
40
40
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c689b0c8a14445397ca5f9febdd99b5949e03f9b"
|
|
52
52
|
}
|