cordova-plugin-run-in-backg.../plugin.xml

46 lines
1.6 KiB
XML
Raw Normal View History

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 12:50:18 +00:00
<!-- Needs to be initialiced onload since the plugin has no callable js interface -->
<param name="onload" value="true" />
2013-10-08 09:00:36 +00:00
</feature>
</config-file>
2013-10-08 12:50:18 +00:00
<!-- The app is able to run in background through location-tracking mode -->
2013-10-08 13:13:58 +00:00
<!-- <config-file target="*-Info.plist" parent="UIBackgroundModes">
2013-10-08 12:36:19 +00:00
<array>
<string>location</string>
</array>
2013-10-08 13:13:58 +00:00
</config-file> -->
2013-10-08 12:36:19 +00:00
2013-10-08 12:50:18 +00:00
<!-- Hint is displayed to user by first start -->
2013-10-08 13:27:41 +00:00
<config-file target="*-Info.plist" parent="CFBundleIdentifier">
<key>NSLocationUsageDescription</key>
2013-10-08 12:50:18 +00:00
<string>Is required -for iOS 6 and above- to run the app in background!</string>
2013-10-08 13:16:13 +00:00
</config-file>
2013-10-08 12:50:18 +00:00
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>