怎么让手机屏幕一直亮着
How to keep mobile screen on
我正在开发一个运行很长时间的 Meteor 应用程序,我正在寻找一种在没有用户时保持屏幕打开的方法 activity(当应用程序 运行当然)。
谢谢
如果我把 documentation correctly, and I may not, because I've never used this before, then you can add the insomnia plugin 读到你的 cordova/phonegap 构建中,像这样:
$ meteor add cordova:nl.x-services.plugins.insomnia@https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin/tarball/47ba15a4ad791eb4d5a0643cdb7ef69f73109e15
然后使用:
window.plugins.insomnia.keepAwake()
和
window.plugins.insomnia.allowSleepAgain()
Meteor 1.2更新:
Install plugins from a Git URL: Meteor no longer supports installing Cordova plugins from tarball URLs, but does support Git
URLs with a SHA reference (like
https://github.com/apache/cordova-plugin-file#c452f1a67f41cb1165c92555f0e721fbb07329cc).
Existing GitHub tarball URLs are converted automatically.
这意味着您现在需要使用:
$ meteor add cordova:nl.x-services.plugins.insomnia@https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin#47ba15a4ad791eb4d5a0643cdb7ef69f73109e15
更新 2
正如 user3819370 指出的那样,该插件现在位于 meteor 使用的注册表中,因此您可以像这样简单地安装它:
meteor add cordova:cordova-plugin-insomnia@4.0.1
我正在开发一个运行很长时间的 Meteor 应用程序,我正在寻找一种在没有用户时保持屏幕打开的方法 activity(当应用程序 运行当然)。
谢谢
如果我把 documentation correctly, and I may not, because I've never used this before, then you can add the insomnia plugin 读到你的 cordova/phonegap 构建中,像这样:
$ meteor add cordova:nl.x-services.plugins.insomnia@https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin/tarball/47ba15a4ad791eb4d5a0643cdb7ef69f73109e15
然后使用:
window.plugins.insomnia.keepAwake()
和
window.plugins.insomnia.allowSleepAgain()
Meteor 1.2更新:
Install plugins from a Git URL: Meteor no longer supports installing Cordova plugins from tarball URLs, but does support Git URLs with a SHA reference (like https://github.com/apache/cordova-plugin-file#c452f1a67f41cb1165c92555f0e721fbb07329cc). Existing GitHub tarball URLs are converted automatically.
这意味着您现在需要使用:
$ meteor add cordova:nl.x-services.plugins.insomnia@https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin#47ba15a4ad791eb4d5a0643cdb7ef69f73109e15
更新 2
正如 user3819370 指出的那样,该插件现在位于 meteor 使用的注册表中,因此您可以像这样简单地安装它:
meteor add cordova:cordova-plugin-insomnia@4.0.1