Files
phonegap-plugins/iOS/PowerManagement/plugin.xml
2013-09-12 11:25:18 +01:00

29 lines
846 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="org.apache.cordova.plugins.PowerManagement"
version="0.1.0">
<name>PowerManagement</name>
<engines>
<engine name="cordova" version=">=2.2.0" />
</engines>
<js-module src="www/powermanagement.js" name="PowerManagement">
<clobbers target="PowerManagement" />
</js-module>
<!-- 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>
</plugin>