Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/snuffy/cordova-plugin-keep-awake


https://github.com/snuffy/cordova-plugin-keep-awake

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# cordova-plugin-keep-awake

Using this plug-in, you can control the automatic sleep at any time.

## Installation

Install the plugin by adding it to your project's config.xml:

```

```

or by using cordova CLI

cordova plugin add cordova-plugin-firebasex

## Usage

```js

// start keep awaking
if (window.KeepAwake) {
KeepAwake.start();
}

// stop keep awaking
if (window.KeepAwake) {
KeepAwake.stop();
}
```