在哪里下载PowerManagement的原始cordova插件,以及如何安装它? 我指的是这个类org.apache.cordova.plugin.PowerManagement 谢谢!
答案 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();