cordova-power-saverdeprecated

Check if power saver mode is enabled

Usage no npm install needed!

<script type="module">
  import cordovaPowerSaver from 'https://cdn.skypack.dev/cordova-power-saver';
</script>

README

cordova-power-saver

Cordova Power Saver plugin is a small plugin that allows applications to check if device is in power saving mode

Usage

    PowerSaver.isPowerSaverEnabled()
        .then((isActive) => {
            console.log('Power saving mode is active', isActive);
        });

Platforms

  • Android (5+)
  • iOS (9+)

Roadmap

  • Adding the observable method that will allow subscribing to changes in power saver mode

Intended usage

    PowerSaver.powerSaverChange()
        .subscribe((isActive) => {
            console.log('Power saving mode has changed to', isActive);
        });

Warning

This plugin is still being tested so please don't use it just yet