awesome-cordova-plugins/docs/plugins/background-fetch/README.md

22 lines
1.3 KiB
Markdown
Raw Normal View History

2021-09-29 20:09:02 +08:00
# Background Fetch
```
$ ionic cordova plugin add cordova-plugin-background-fetch
2021-09-29 21:19:55 +08:00
$ npm install @awesome-cordova-plugins/background-fetch
2021-09-29 20:09:02 +08:00
```
2021-09-29 21:19:55 +08:00
## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/background-fetch/)
2021-09-29 20:09:02 +08:00
Plugin Repo: [https://github.com/transistorsoft/cordova-plugin-background-fetch](https://github.com/transistorsoft/cordova-plugin-background-fetch)
iOS Background Fetch Implementation. See: https://developer.apple.com/reference/uikit/uiapplication#1657399
iOS Background Fetch is basically an API which wakes up your app about every 15 minutes (during the user's prime-time hours) and provides your app exactly 30s of background running-time. This plugin will execute your provided callbackFn whenever a background-fetch event occurs. There is no way to increase the rate which a fetch-event occurs and this plugin sets the rate to the most frequent possible value of UIApplicationBackgroundFetchIntervalMinimum -- iOS determines the rate automatically based upon device usage and time-of-day (ie: fetch-rate is about ~15min during prime-time hours; less frequently when the user is presumed to be sleeping, at 3am for example).
For more detail, please see https://github.com/transistorsoft/cordova-plugin-background-fetch
## Supported platforms
- iOS
2021-09-29 20:38:45 +08:00