安装Cordova" native" PowerManagement插件

时间:2014-08-10 13:50:58

标签: cordova plugins

在哪里下载PowerManagement的原始cordova插件,以及如何安装它? 我指的是这个类org.apache.cordova.plugin.PowerManagement 谢谢!

2 个答案:

答案 0 :(得分:1)

这不是官方的Cordova插件

您可以使用以下命令安装:

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

Gihub的插件: https://github.com/Viras-/cordova-plugin-powermanagement

答案 1 :(得分:1)

你可以使用这个(不是正式的Cordova插件,但在cordova插件网站上引用)

http://plugins.cordova.io/#/package/org.chromium.power

它支持android和ios。

使用requestKeepAwake API继续开机:

chrome.power.requestKeepAwake('display');

然后使用releaseKeepAwake API关闭:

chrome.power.releaseKeepAwake();