Flutter教程

Power Management

Contents

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.

https://github.com/Viras-/cordova-plugin-powermanagement

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 电源管理 Power Management插件的安装(Installation)

ionic cordova plugin add cordova-plugin-powermanagement-orig npm install @ionic-native/power-management
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/power-management

Ionic 电源管理 Power Management插件支持的平台(Supported Platforms)

  • Android
  • iOS
  • Windows
  • Windows Phone

Ionic 电源管理 Power Management插件的用法(Usage)

import { PowerManagement } from '@ionic-native/power-management/ngx';

constructor(private powerManagement: PowerManagement) { }

...

this.powerManagement.acquire()
  .then(onSuccess)
  .catch(onError);