I've added a function for Android to allow the disabling of wakelock release on pause. This is for my use case where the screen will be off most of the time the wakelock is enabled. I added usage for it to the readme, along with the existing functions.
63 lines
2.1 KiB
XML
63 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
|
|
id="at.gofg.sportscomputer.powermanagement"
|
|
version="1.1.0">
|
|
<name>PowerManagement</name>
|
|
<description>PowerManagement plugin for Cordova</description>
|
|
<license>Apache 2.0</license>
|
|
<keywords>cordova,powermanagement</keywords>
|
|
|
|
<js-module src="www/powermanagement.js" name="device">
|
|
<clobbers target="window.powerManagement" />
|
|
</js-module>
|
|
|
|
<!-- wp7 -->
|
|
<platform name="wp7">
|
|
<config-file target="config.xml" parent="/*">
|
|
<feature name="PowerManagement">
|
|
<param name="wp-package" value="PowerManagement"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<source-file src="src/wp/PowerManagement.cs" />
|
|
</platform>
|
|
|
|
<!-- wp8 -->
|
|
<platform name="wp8">
|
|
<config-file target="config.xml" parent="/*">
|
|
<feature name="PowerManagement">
|
|
<param name="wp-package" value="PowerManagement"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<source-file src="src/wp/PowerManagement.cs" />
|
|
</platform>
|
|
|
|
<!-- ios -->
|
|
<platform name="ios">
|
|
<config-file target="config.xml" parent="/widget">
|
|
<feature name="PowerManagement">
|
|
<param name="ios-package" value="PowerManagement" />
|
|
</feature>
|
|
</config-file>
|
|
|
|
<header-file src="src/ios/PowerManagement.h" />
|
|
<source-file src="src/ios/PowerManagement.m" />
|
|
</platform>
|
|
|
|
<!-- android -->
|
|
<platform name="android">
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
<feature name="PowerManagement" >
|
|
<param name="android-package" value="org.apache.cordova.powermanagement.PowerManagement"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<config-file target="AndroidManifest.xml" parent="/*">
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
</config-file>
|
|
|
|
<source-file src="src/android/PowerManagement.java" target-dir="src/org/apache/cordova/powermanagement" />
|
|
</platform>
|
|
</plugin>
|