expo-updates 0.14.5 → 0.14.7
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,17 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.14.7 — 2022-11-09
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fixed the _app.manifest_ occasionally missing from build outputs on Android. ([#19731](https://github.com/expo/expo/pull/19731) by [@kudo](https://github.com/kudo), [@kudo](https://github.com/kudo))
|
|
18
|
+
- Fixed another _app.manifest_ occasionally missing from build outputs on Android. ([#19809](https://github.com/expo/expo/pull/19809) by [@kudo](https://github.com/kudo))
|
|
19
|
+
|
|
20
|
+
## 0.14.6 — 2022-09-26
|
|
21
|
+
|
|
22
|
+
_This version does not introduce any user-facing changes._
|
|
23
|
+
|
|
13
24
|
## 0.14.5 — 2022-08-22
|
|
14
25
|
|
|
15
26
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt'
|
|
|
4
4
|
apply plugin: 'maven-publish'
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '0.14.
|
|
7
|
+
version = '0.14.7'
|
|
8
8
|
|
|
9
9
|
apply from: "../scripts/create-manifest-android.gradle"
|
|
10
10
|
|
|
@@ -77,7 +77,7 @@ android {
|
|
|
77
77
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
78
78
|
targetSdkVersion safeExtGet("targetSdkVersion", 31)
|
|
79
79
|
versionCode 31
|
|
80
|
-
versionName '0.14.
|
|
80
|
+
versionName '0.14.7'
|
|
81
81
|
consumerProguardFiles("proguard-rules.pro")
|
|
82
82
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
83
83
|
// uncomment below to export the database schema when making changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@expo/code-signing-certificates": "0.0.2",
|
|
43
43
|
"@expo/config": "~7.0.1",
|
|
44
44
|
"@expo/config-plugins": "~5.0.1",
|
|
45
|
-
"@expo/metro-config": "~0.
|
|
45
|
+
"@expo/metro-config": "~0.4.0",
|
|
46
46
|
"arg": "4.1.0",
|
|
47
47
|
"expo-eas-client": "~0.3.0",
|
|
48
48
|
"expo-manifests": "~0.3.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"expo": "*"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "903a8208ae60dc6d70fdc5b01c61b201af17faae"
|
|
68
68
|
}
|
|
@@ -95,10 +95,8 @@ def setupClosure = {
|
|
|
95
95
|
enabled(currentBundleTask.enabled)
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
dependentTask.dependsOn currentAssetsCopyTask
|
|
101
|
-
}
|
|
98
|
+
appProject.tasks.findByName("merge${targetName}Resources")?.dependsOn(currentAssetsCopyTask)
|
|
99
|
+
appProject.tasks.findByName("compress${targetName}Assets")?.dependsOn(currentAssetsCopyTask)
|
|
102
100
|
}
|
|
103
101
|
}
|
|
104
102
|
|