awesome-cordova-plugins/docs/plugins/foreground-service/README.md

33 lines
1007 B
Markdown
Raw Normal View History

2021-09-29 20:09:02 +08:00
# Foreground Service
```
$ ionic cordova plugin add cordova-plugin-foreground-service
2021-09-29 21:19:55 +08:00
$ npm install @awesome-cordova-plugins/foreground-service
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/foreground-service/)
2021-09-29 20:09:02 +08:00
Plugin Repo: [https://github.com/DavidBriglio/cordova-plugin-foreground-service](https://github.com/DavidBriglio/cordova-plugin-foreground-service)
This plugin allows for android devices to continue running services in the background, using a
foreground ongoing notification. This is targeted towards use with plugins such as
'cordova-geolocation' that will not run while the app is in the background on android API 26+.
2021-09-29 20:38:45 +08:00
For android API 28+, the following xml snippet should be inserted into ```config.xml```:
2021-09-29 20:09:02 +08:00
```
...
<platform name="android">
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
</config-file>
...
```
## Supported platforms
- Android
2021-09-29 20:38:45 +08:00