2013-10-08 08:51:17 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
|
|
|
id="de.appplant.cordova.plugin.background-mode"
|
2013-10-08 09:00:36 +00:00
|
|
|
version="0.2.0dev">
|
2013-10-08 08:51:17 +00:00
|
|
|
|
|
|
|
<name>BackgroundMode</name>
|
|
|
|
|
|
|
|
<description>A bunch of background mode plugins for Cordova 3.x.x</description>
|
|
|
|
<keywords>background, ios, windows phone 8, wp8</keywords>
|
|
|
|
<license>GPL v2 License</license>
|
|
|
|
|
|
|
|
<author>Sebastián Katzer (github.com/katzer)</author>
|
|
|
|
|
|
|
|
<engines>
|
|
|
|
<engine name="cordova" version=">=3.0.0" />
|
|
|
|
</engines>
|
2013-10-08 09:00:36 +00:00
|
|
|
|
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="BackgroundMode">
|
|
|
|
<param name="ios-package" value="APPBackgroundMode"/>
|
2013-10-08 10:47:57 +00:00
|
|
|
<param name="onload" value="true" />
|
2013-10-08 09:00:36 +00:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2013-10-08 12:36:19 +00:00
|
|
|
<config-file target="*-Info.plist" parent="CFBundleURLTypes">
|
|
|
|
<key>UIBackgroundModes</key>
|
|
|
|
<array>
|
|
|
|
<string>location</string>
|
|
|
|
</array>
|
|
|
|
</config-file>
|
|
|
|
|
2013-10-08 09:00:36 +00:00
|
|
|
<header-file src="src/ios/APPBackgroundMode.h" />
|
|
|
|
<source-file src="src/ios/APPBackgroundMode.m" />
|
|
|
|
</platform>
|
2013-10-08 08:51:17 +00:00
|
|
|
</plugin>
|