48 lines
1.5 KiB
XML
Raw Normal View History

2013-08-10 14:21:21 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="at.gofg.sportscomputer.powermanagement"
2013-10-21 18:31:22 +02:00
version="1.1.0">
2013-08-10 14:21:21 +02:00
<name>PowerManagement</name>
<description>PowerManagement plugin for Cordova</description>
<license>GPL</license>
<keywords>cordova,powermanagement</keywords>
<js-module src="www/powermanagement.js" name="device">
2013-08-10 14:30:07 +02:00
<clobbers target="window.powerManagement" />
2013-08-10 14:21:21 +02:00
</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>
2013-10-21 18:31:22 +02:00
<!-- 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>
2013-08-10 14:21:21 +02:00
</plugin>