Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snuffy/cordova-plugin-keep-awake
https://github.com/snuffy/cordova-plugin-keep-awake
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/snuffy/cordova-plugin-keep-awake
- Owner: snuffy
- Created: 2019-08-19T05:24:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-12T23:00:02.000Z (over 4 years ago)
- Last Synced: 2024-10-12T23:29:51.993Z (3 months ago)
- Language: Kotlin
- Size: 32.2 KB
- Stars: 2
- Watchers: 1
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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();
}
```