Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

@red-mobile/cordova-plugin-powermanagement

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@red-mobile/cordova-plugin-powermanagement

Plugin for managing the power state (i.e. idle switching).

latest
Source
npmnpm
Version
2.0.1
Version published
Weekly downloads
7
-56.25%
Maintainers
1
Weekly downloads
 
Created
Source

PowerManagement

The PowerManagement plugin offers access to the devices power-management functionality. It should be used for applications which keep running for a long time without any user interaction.

For details on power functionality see:

  • Android: PowerManager

Supported Platforms

  • Android

Installation

cordova plugin add @red-mobile/cordova-plugin-powermanagement

uninstall

cordova plugin remove @red-mobile/cordova-plugin-powermanagement

Usage

window.powerManagement.acquire(successCallback, failureCallback)

Acquire a wakelock by calling this.

	window.powerManagement.acquire(function() {
		console.log('Wakelock acquired');
	}, function() {
		console.log('Failed to acquire wakelock');
	});

window.powerManagement.dim(successCallback, failureCallback)

This acquires a partial wakelock, allowing the screen to be dimmed.

	window.powerManagement.dim(function() {
		console.log('Wakelock acquired');
	}, function() {
		console.log('Failed to acquire wakelock');
	});

This function is nort supported on windows platform and will invoke the successCallback.

window.powerManagement.release(successCallback, failureCallback)

Release the wakelock. It's important to do this when you're finished with the wakelock, to avoid unnecessary battery drain.

	window.powerManagement.release(function() {
		console.log('Wakelock released');
	}, function() {
		console.log('Failed to release wakelock');
	});

window.powerManagement.setReleaseOnPause(enabled, successCallback, failureCallback)

By default, the plugin will automatically release a wakelock when your app is paused (e.g. when the screen is turned off, or the user switches to another app). It will reacquire the wakelock upon app resume. If you would prefer to disable this behaviour, you can use this function.

	window.powerManagement.setReleaseOnPause(false, function() {
		console.log('Set successfully');
	}, function() {
		console.log('Failed to set');
	});

Note that in all the above examples, all callbacks are optional.

Keywords

ecosystem:cordova

FAQs

Package last updated on 27 Dec 2020

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