@garygrossgarten/cordova-plugin-screen-locker

1.0.0 • Public • Published

Cordova Screen Locker Plugin

The plugin helps you to lock and unlock device screen programmatically.

#Supported Platforms

The plugin version 0.2.1 supports only Android (SDK >=7)

Other platforms will be added in new versions of plugin

#Installation

cordova plugin add https://github.com/kitolog/cordova-plugin-screen-locker.git

#Sample

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

/@garygrossgarten/cordova-plugin-screen-locker/

    Package Sidebar

    Install

    npm i @garygrossgarten/cordova-plugin-screen-locker

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    8.39 kB

    Total Files

    5

    Last publish

    Collaborators

    • garygrossgarten