Tutorialsplane

Ionic Background Mode


Ionic Background Mode – This plugin is basically used to prevent the device’s sleep mode when app’s some background activity is going on, cordova-plugin-background-mode is used to set the background mode in Ionic. Here in this tutorial we are going to explain how you can install this plugin and use background mode.


Ionic Background Mode | Native Plugin Example

First let us see how to install the cordova plugin cordova-plugin-background-mode

Installation

You can install the cordova plugin simply as below –

Ionic Background Mode Native Plugin Example:

$ ionic cordova plugin add cordova-plugin-background-mode
$ npm install --save @ionic-native/background-mode

Example

Here is simple example of background mode-

Ionic Native Background Mode Example:

import { BackgroundMode } from '@ionic-native/background-mode';

constructor(private backgroundMode: BackgroundMode) { }

...

this.backgroundMode.enable();

Instance Members