cordova-plugin-screen-locker

Plugin allows lock and unlock device screen by calling plugin

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
cordova-plugin-screen-locker
0.2.26 years ago6 years agoMinified + gzip package size for cordova-plugin-screen-locker in KB

Readme

Cordova Screen Locker Plugin
The plugin helps you to lock and unlock device screen programmatically.

Notes

this repo is forked from https://github.com/kitolog/cordova-plugin-screen-locker.git
Supported Platforms
The plugin version 0.2.1 supports only Android (SDK >=7) Other platforms will be added in new versions of plugin
Installation
```bash cordova plugin add cordova-plugin-screen-locker ```
Sample
```javascript var successCallback = function() { console.log('screen unlock success'); // do some staff here }; var errorCallback = function(e) { console.log('error: ' + e); }; window.screenLocker.unlock(successCallback, errorCallback, 10); // 10 seconds unlock timeout (third parameter is optional) window.screenLocker.lock(successFun, errorFun); // release screen unlock ```
License
This software is released under the Apache 2.0 License. © 2015 AppLurk, All rights reserved