expo 52.0.13 → 52.0.14
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/android/build.gradle
CHANGED
|
@@ -33,7 +33,7 @@ def getRNVersion() {
|
|
|
33
33
|
ensureDependeciesWereEvaluated(project)
|
|
34
34
|
|
|
35
35
|
group = 'host.exp.exponent'
|
|
36
|
-
version = '52.0.
|
|
36
|
+
version = '52.0.14'
|
|
37
37
|
|
|
38
38
|
buildscript {
|
|
39
39
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
@@ -46,7 +46,7 @@ android {
|
|
|
46
46
|
namespace "expo.core"
|
|
47
47
|
defaultConfig {
|
|
48
48
|
versionCode 1
|
|
49
|
-
versionName "52.0.
|
|
49
|
+
versionName "52.0.14"
|
|
50
50
|
consumerProguardFiles("proguard-rules.pro")
|
|
51
51
|
}
|
|
52
52
|
testOptions {
|
|
@@ -115,8 +115,10 @@ class ReactActivityDelegateWrapper(
|
|
|
115
115
|
reactActivityLifecycleListeners.forEach { listener ->
|
|
116
116
|
listener.onContentChanged(activity)
|
|
117
117
|
}
|
|
118
|
-
shouldEmitPendingResume
|
|
119
|
-
|
|
118
|
+
if (shouldEmitPendingResume) {
|
|
119
|
+
shouldEmitPendingResume = false
|
|
120
|
+
onResume()
|
|
121
|
+
}
|
|
120
122
|
}
|
|
121
123
|
return
|
|
122
124
|
}
|
|
@@ -193,9 +195,11 @@ class ReactActivityDelegateWrapper(
|
|
|
193
195
|
}
|
|
194
196
|
|
|
195
197
|
override fun onPause() {
|
|
196
|
-
// If app is stopped before delayed `loadApp`, we should cancel the pending resume
|
|
198
|
+
// If app is stopped before the delayed `loadApp`, we should cancel the pending resume
|
|
199
|
+
// and avoid propagating the pause event because the state was never resumed.
|
|
197
200
|
if (shouldEmitPendingResume) {
|
|
198
201
|
shouldEmitPendingResume = false
|
|
202
|
+
return
|
|
199
203
|
}
|
|
200
204
|
reactActivityLifecycleListeners.forEach { listener ->
|
|
201
205
|
listener.onPause(activity)
|
|
@@ -211,9 +215,11 @@ class ReactActivityDelegateWrapper(
|
|
|
211
215
|
}
|
|
212
216
|
|
|
213
217
|
override fun onDestroy() {
|
|
214
|
-
// If app is stopped before delayed `loadApp`, we should cancel the pending resume
|
|
218
|
+
// If app is stopped before the delayed `loadApp`, we should cancel the pending resume
|
|
219
|
+
// and avoid propagating the destroy event because the state was never resumed.
|
|
215
220
|
if (shouldEmitPendingResume) {
|
|
216
221
|
shouldEmitPendingResume = false
|
|
222
|
+
return
|
|
217
223
|
}
|
|
218
224
|
reactActivityLifecycleListeners.forEach { listener ->
|
|
219
225
|
listener.onDestroy(activity)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.0.14",
|
|
4
4
|
"description": "The Expo SDK",
|
|
5
5
|
"main": "src/Expo.ts",
|
|
6
6
|
"module": "src/Expo.ts",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@expo/cli": "0.22.0",
|
|
72
72
|
"@expo/config": "~10.0.5",
|
|
73
73
|
"@expo/config-plugins": "~9.0.11",
|
|
74
|
-
"@expo/fingerprint": "0.11.
|
|
74
|
+
"@expo/fingerprint": "0.11.3",
|
|
75
75
|
"@expo/metro-config": "0.19.5",
|
|
76
76
|
"@expo/vector-icons": "^14.0.0",
|
|
77
77
|
"babel-preset-expo": "~12.0.3",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"expo-file-system": "~18.0.4",
|
|
81
81
|
"expo-font": "~13.0.1",
|
|
82
82
|
"expo-keep-awake": "~14.0.1",
|
|
83
|
-
"expo-modules-autolinking": "2.0.
|
|
83
|
+
"expo-modules-autolinking": "2.0.3",
|
|
84
84
|
"expo-modules-core": "2.1.1",
|
|
85
85
|
"fbemitter": "^3.0.0",
|
|
86
86
|
"web-streams-polyfill": "^3.3.2",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"optional": true
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "81f805d9d06e3af3d91ee76d2ff41df70409e083"
|
|
116
116
|
}
|