Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-screen-locker

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-screen-locker

Plugin allows lock and unlock device screen by calling plugin

  • 0.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-68.75%
Maintainers
1
Weekly downloads
 
Created
Source

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

cordova plugin add cordova-plugin-screen-locker

#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

Keywords

FAQs

Package last updated on 11 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc