mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 16:38:08 -05:00
29 lines
846 B
XML
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> |