cordova-plugin-run-in-backg.../README.md

235 lines
8.9 KiB
Markdown
Raw Permalink Normal View History

This is a fork of [a great plugin by katzer](https://github.com/katzer/cordova-plugin-background-mode/). It aims to keep up-to-date with Android changes while also providing more features.
2013-10-08 08:51:17 +00:00
2017-01-27 11:49:48 +00:00
Cordova Background Plugin [![npm version](https://badge.fury.io/js/cordova-plugin-background-mode.svg)](http://badge.fury.io/js/cordova-plugin-background-mode) [![Build Status](https://travis-ci.org/katzer/cordova-plugin-background-mode.svg?branch=master)](https://travis-ci.org/katzer/cordova-plugin-background-mode) [![codebeat badge](https://codebeat.co/badges/49709283-b313-4ced-8630-f520baaec7b5)](https://codebeat.co/projects/github-com-katzer-cordova-plugin-background-mode)
2017-01-26 13:54:32 +00:00
=========================
2013-10-08 08:51:17 +00:00
2017-01-26 13:54:32 +00:00
Plugin for the [Cordova][cordova] framework to perform infinite background execution.
2014-02-26 00:15:20 +00:00
2014-11-17 13:06:54 +00:00
Most mobile operating systems are multitasking capable, but most apps dont need to run while in background and not present for the user. Therefore they pause the app in background mode and resume the app before switching to foreground mode.
The system keeps all network connections open while in background, but does not deliver the data until the app resumes.
2013-10-08 08:51:17 +00:00
2017-01-26 13:54:32 +00:00
#### Store Compliance
Infinite background tasks are not official supported on most mobile operation systems and thus not compliant with public store vendors. A successful submssion isn't garanteed.
2014-02-26 00:15:20 +00:00
2017-01-26 13:54:32 +00:00
Use the plugin by your own risk!
2014-02-13 13:15:12 +00:00
2016-02-29 08:55:07 +00:00
2017-01-26 13:54:32 +00:00
## Supported Platforms
2017-01-27 09:23:46 +00:00
- __Android/Amazon FireOS__
- __Browser__
2017-01-26 13:54:32 +00:00
- __iOS__
- __Windows__ _(see #222)_
2013-10-08 08:51:17 +00:00
2014-02-26 00:15:20 +00:00
2017-01-26 13:54:32 +00:00
## Installation
The plugin can be installed via [Cordova-CLI][CLI] and will be publicly available on [NPM][npm] eventually.
2014-11-17 13:06:54 +00:00
2017-01-26 13:54:32 +00:00
Execute from the projects root folder:
2013-10-08 08:51:17 +00:00
$ cordova plugin add https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
2017-01-26 13:54:32 +00:00
## Usage
2017-01-26 13:54:32 +00:00
The plugin creates the object `cordova.plugins.backgroundMode` and is accessible after the *deviceready* event has been fired.
2014-11-17 13:06:54 +00:00
2017-02-06 14:59:57 +00:00
```js
2014-11-17 13:06:54 +00:00
document.addEventListener('deviceready', function () {
// cordova.plugins.backgroundMode is now available
}, false);
```
2017-01-26 13:54:32 +00:00
### Enable the background mode
The plugin is not enabled by default. Once it has been enabled the mode becomes active if the app moves to background.
2013-10-08 14:32:10 +00:00
2017-02-06 14:59:57 +00:00
```js
2014-11-23 12:03:51 +00:00
cordova.plugins.backgroundMode.enable();
2017-01-26 13:54:32 +00:00
// or
cordova.plugins.backgroundMode.setEnabled(true);
2013-10-09 12:16:00 +00:00
```
2017-01-26 13:54:32 +00:00
To disable the background mode:
2017-02-06 14:59:57 +00:00
```js
2014-11-23 12:03:51 +00:00
cordova.plugins.backgroundMode.disable();
2017-01-26 13:54:32 +00:00
// or
cordova.plugins.backgroundMode.setEnabled(false);
2013-10-09 12:16:00 +00:00
```
2017-01-26 13:54:32 +00:00
### Check if running in background
Once the plugin has been enabled and the app has entered the background, the background mode becomes active.
2017-02-06 14:59:57 +00:00
```js
cordova.plugins.backgroundMode.isActive(); // => boolean
```
2017-01-26 13:54:32 +00:00
A non-active mode means that the app is in foreground.
### Listen for events
The plugin fires an event each time its status has been changed. These events are `enable`, `disable`, `activate`, `deactivate` and `failure`.
2017-02-06 14:59:57 +00:00
```js
2017-01-26 13:54:32 +00:00
cordova.plugins.backgroundMode.on('EVENT', function);
```
2017-01-26 13:54:32 +00:00
To remove an event listeners:
2017-02-06 14:59:57 +00:00
```js
2017-01-26 13:54:32 +00:00
cordova.plugins.backgroundMode.un('EVENT', function);
```
2017-01-26 13:54:32 +00:00
## Android specifics
### Transit between application states
Android allows to programmatically move from foreground to background or vice versa.
Note: starting with Android 10, you must request the "Draw on Top" permission from the user or the call to `moveToForeground` will silently fail. You can request it with `cordova.plugins.backgroundMode.requestForegroundPermission();`. This permission isn't necessary for `moveToBackground`
2017-02-06 14:59:57 +00:00
```js
2017-01-26 13:54:32 +00:00
cordova.plugins.backgroundMode.moveToBackground();
// or
cordova.plugins.backgroundMode.moveToForeground();
```
2017-01-26 13:54:32 +00:00
### Back button
Override the back button on Android to go to background instead of closing the app.
2014-11-17 13:06:54 +00:00
2017-02-06 14:59:57 +00:00
```js
2017-01-26 13:54:32 +00:00
cordova.plugins.backgroundMode.overrideBackButton();
2014-11-17 13:06:54 +00:00
```
### Recent task list
Exclude the app from the recent task list works on Android 5.0+.
2017-02-06 14:59:57 +00:00
```js
cordova.plugins.backgroundMode.excludeFromTaskList();
```
2017-02-06 14:59:57 +00:00
### Detect screen status
2017-03-27 08:38:21 +00:00
The method works async instead of _isActive()_ or _isEnabled()_.
2017-02-06 14:59:57 +00:00
```js
cordova.plugins.backgroundMode.isScreenOff(function(bool) {
...
});
```
2017-02-10 12:10:46 +00:00
### Unlock and wake-up
A wake-up turns on the screen while unlocking moves the app to foreground even the device is locked.
```js
// Turn screen on
cordova.plugins.backgroundMode.wakeUp();
// Turn screen on and show app even locked
cordova.plugins.backgroundMode.unlock();
```
### Request to disable battery optimizations
Starting in Android 8, apps can be put to sleep to conserve battery. When this happens (usually after 5 minutes or so), the background task is killed. This will cause things like MQTT connections to break.
This method will show a permission prompt for the user (only if the app hasn't been granted permission) to ignore the optimization.
```js
cordova.plugins.backgroundMode.disableBatteryOptimizations();
```
You can also open the battery optimization settings menu directly, and get the user to set it manually. This may be a better option for devices which may ignore the prompt above.
```js
cordova.plugins.backgroundMode.openBatteryOptimizationsSettings();
```
To check if battery optimizations are disabled for the app:
```js
cordova.plugins.backgroundMode.isIgnoringBatteryOptimizations(function(isIgnoring) {
...
})
```
Additionally, you may find that your JS code begins to run less frequently, or not at all while in the background. This can be due to the webview slowing down its execution due to being in the background. The `disableWebViewOptimizations` function can prevent that, but it's important that it is run _after_ the app goes to the background.
```js
cordova.plugins.backgroundMode.on('activate', function() {
cordova.plugins.backgroundMode.disableWebViewOptimizations();
});
```
2017-01-26 13:54:32 +00:00
### Notification
2014-12-14 13:29:10 +00:00
To indicate that the app is executing tasks in background and being paused would disrupt the user, the plug-in has to create a notification while in background - like a download progress bar.
2013-10-10 10:38:32 +00:00
#### Override defaults
2017-01-26 13:54:32 +00:00
The title, text and icon for that notification can be customized as below. Also, by default the app will come to foreground when tapping on the notification. That can be changed by setting resume to false. On Android 5.0+, the color option will set the background color of the notification circle. Also on Android 5.0+, setting hidden to false will make the notification visible on lockscreen.
2014-11-17 13:06:54 +00:00
2017-02-06 14:59:57 +00:00
```js
cordova.plugins.backgroundMode.setDefaults({
2017-01-30 11:08:53 +00:00
title: String,
text: String,
subText: String, // see https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#setSubText(java.lang.CharSequence)
icon: 'icon', // this will look for icon.png in platforms/android/res/drawable|mipmap
color: String, // hex format like 'F14F4D'
2017-01-26 13:54:32 +00:00
resume: Boolean,
hidden: Boolean,
bigText: Boolean,
channelName: String, // Shown when the user views the app's notification settings
channelDescription: String, // Shown when the user views the channel's settings
allowClose: Boolean, // add a "Close" action to the notification
closeIcon: 'power', // An icon shown for the close action
closeTitle: 'Close', // The text for the close action
showWhen: Boolean, //(Default: true) Show the time since the notification was created
visibility: String, // Android only: one of 'private' (default), 'public' or 'secret' (see https://developer.android.com/reference/android/app/Notification.Builder.html#setVisibility(int))
2014-11-17 13:06:54 +00:00
})
```
2017-01-26 13:54:32 +00:00
To modify the currently displayed notification
2017-02-06 14:59:57 +00:00
```js
2017-01-26 13:54:32 +00:00
cordova.plugins.backgroundMode.configure({ ... });
```
2017-01-26 13:54:32 +00:00
__Note:__ All properties are optional - only override the things you need to.
#### Run in background without notification
In silent mode the plugin will not display a notification - which is not the default. Be aware that Android recommends adding a notification otherwise the OS may pause the app.
2017-02-06 14:59:57 +00:00
```js
2017-07-05 09:17:22 +00:00
cordova.plugins.backgroundMode.setDefaults({ silent: true });
```
2014-11-17 13:06:54 +00:00
2017-01-26 13:54:32 +00:00
## Quirks
Various APIs like playing media or tracking GPS position in background might not work while in background even the background mode is active. To fix such issues the plugin provides a method to disable most optimizations done by Android/CrossWalk.
2017-02-06 14:59:57 +00:00
```js
2017-01-27 23:15:53 +00:00
cordova.plugins.backgroundMode.on('activate', function() {
cordova.plugins.backgroundMode.disableWebViewOptimizations();
2017-01-26 13:54:32 +00:00
});
```
__Note:__ Calling the method led to increased resource and power consumption.
2013-12-01 12:57:36 +00:00
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
2014-11-17 13:06:54 +00:00
## License
2014-11-17 13:06:54 +00:00
This software is released under the [Apache 2.0 License][apache2_license].
2017-01-26 13:54:32 +00:00
Made with :yum: from Leipzig
? 2017 [appPlant GmbH][appplant] & [meshfields][meshfields]
2014-11-17 13:06:54 +00:00
[cordova]: https://cordova.apache.org
[CLI]: http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface
2017-01-26 13:54:32 +00:00
[NPM]: ???
2014-11-17 13:06:54 +00:00
[changelog]: CHANGELOG.md
[apache2_license]: http://opensource.org/licenses/Apache-2.0
[appplant]: http://appplant.de
[meshfields]: http://meshfields.de