expo-background-fetch 13.0.1 → 13.0.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
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 13.0.3 — 2024-11-13
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Android: Fixed so that background fetch will run when app is killed or in the background. ([#32849](https://github.com/expo/expo/pull/32849) by [@chrfalch](https://github.com/chrfalch))
|
|
18
|
+
|
|
19
|
+
## 13.0.2 — 2024-11-10
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 13.0.1 — 2024-10-22
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ This module might listen when the device is starting up. It's necessary to conti
|
|
|
37
37
|
|
|
38
38
|
Run `npx pod-install` after installing the npm package.
|
|
39
39
|
|
|
40
|
-
In order to use `BackgroundFetch` API in standalone, detached and bare apps on iOS, your app has to include background mode in the `Info.plist` file. See [background
|
|
40
|
+
In order to use `BackgroundFetch` API in standalone, detached and bare apps on iOS, your app has to include background mode in the `Info.plist` file. See [background fetch configuration](https://docs.expo.dev/versions/latest/sdk/background-fetch/#configuration) for more details.
|
|
41
41
|
|
|
42
42
|
# Contributing
|
|
43
43
|
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '13.0.
|
|
4
|
+
version = '13.0.3'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -14,6 +14,6 @@ android {
|
|
|
14
14
|
namespace "expo.modules.backgroundfetch"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 23
|
|
17
|
-
versionName "13.0.
|
|
17
|
+
versionName "13.0.3"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -80,7 +80,7 @@ public class BackgroundFetchTaskConsumer extends TaskConsumer implements TaskCon
|
|
|
80
80
|
TaskManagerUtilsInterface taskManagerUtils = getTaskManagerUtils();
|
|
81
81
|
|
|
82
82
|
if (context != null) {
|
|
83
|
-
taskManagerUtils.
|
|
83
|
+
taskManagerUtils.executeTask(mTask, null);
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-background-fetch",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.3",
|
|
4
4
|
"description": "Expo universal module for BackgroundFetch API",
|
|
5
5
|
"main": "build/BackgroundFetch.js",
|
|
6
6
|
"types": "build/BackgroundFetch.d.ts",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"expo": "*"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c4999f5aa407155a170830a0fa17e3e3ca1fcbee"
|
|
45
45
|
}
|