2013-10-08 08:51:17 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2013-10-10 10:21:20 +00:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-12-09 12:36:43 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-02-29 08:55:07 +00:00
|
|
|
id="cordova-plugin-background-mode"
|
2016-08-16 11:18:04 +00:00
|
|
|
version="0.6.6.dev">
|
2013-10-08 08:51:17 +00:00
|
|
|
|
|
|
|
<name>BackgroundMode</name>
|
|
|
|
|
2016-08-16 11:18:04 +00:00
|
|
|
<description>Prevent apps from going to sleep in background.</description>
|
2014-11-17 13:06:54 +00:00
|
|
|
|
2013-12-09 12:36:43 +00:00
|
|
|
<repo>https://github.com/katzer/cordova-plugin-background-mode.git</repo>
|
2014-11-17 13:06:54 +00:00
|
|
|
|
2015-03-03 14:08:11 +00:00
|
|
|
<keywords>appplant, background</keywords>
|
2014-11-17 13:06:54 +00:00
|
|
|
|
2013-12-09 12:36:43 +00:00
|
|
|
<license>Apache 2.0</license>
|
2013-10-08 08:51:17 +00:00
|
|
|
|
2013-12-09 12:36:43 +00:00
|
|
|
<author>Sebastián Katzer</author>
|
2013-10-08 08:51:17 +00:00
|
|
|
|
2014-11-04 14:57:03 +00:00
|
|
|
<!-- dependencies -->
|
2016-02-29 09:03:50 +00:00
|
|
|
<dependency id="cordova-plugin-device" />
|
2014-11-04 14:57:03 +00:00
|
|
|
|
2014-10-26 15:47:18 +00:00
|
|
|
<!-- cordova -->
|
2013-10-08 08:51:17 +00:00
|
|
|
<engines>
|
2016-08-16 11:18:04 +00:00
|
|
|
<engine name="cordova" version=">=6.0.0" />
|
2013-10-08 08:51:17 +00:00
|
|
|
</engines>
|
2013-10-08 09:00:36 +00:00
|
|
|
|
2014-10-26 15:47:18 +00:00
|
|
|
<!-- js -->
|
2013-10-09 08:50:15 +00:00
|
|
|
<js-module src="www/background-mode.js" name="BackgroundMode">
|
2014-11-04 14:48:14 +00:00
|
|
|
<clobbers target="cordova.plugins.backgroundMode" />
|
2013-10-09 13:25:36 +00:00
|
|
|
<clobbers target="plugin.backgroundMode" />
|
2013-10-09 08:50:15 +00:00
|
|
|
</js-module>
|
|
|
|
|
2013-10-08 09:00:36 +00:00
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
2014-01-30 16:21:10 +00:00
|
|
|
<feature name="BackgroundMode">
|
2014-11-17 13:06:54 +00:00
|
|
|
<param name="ios-package" value="APPBackgroundMode" />
|
2014-01-30 16:21:10 +00:00
|
|
|
</feature>
|
2013-10-08 09:00:36 +00:00
|
|
|
</config-file>
|
|
|
|
|
2014-11-04 13:05:45 +00:00
|
|
|
<!-- The app is able to run in background through audio mode -->
|
2013-10-08 13:49:34 +00:00
|
|
|
<config-file target="*-Info.plist" parent="UIBackgroundModes">
|
2013-10-08 12:36:19 +00:00
|
|
|
<array>
|
2014-11-04 13:05:45 +00:00
|
|
|
<string>audio</string>
|
2013-10-08 12:36:19 +00:00
|
|
|
</array>
|
2013-10-08 13:49:34 +00:00
|
|
|
</config-file>
|
2013-10-08 12:36:19 +00:00
|
|
|
|
2014-12-13 23:57:22 +00:00
|
|
|
<resource-file src="appbeep.wav" />
|
2013-10-08 12:50:18 +00:00
|
|
|
|
2014-01-30 16:21:10 +00:00
|
|
|
<header-file src="src/ios/APPBackgroundMode.h" />
|
|
|
|
<source-file src="src/ios/APPBackgroundMode.m" />
|
2013-10-08 09:00:36 +00:00
|
|
|
</platform>
|
2013-10-08 15:11:35 +00:00
|
|
|
|
2014-02-13 13:22:21 +00:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2014-10-26 15:47:18 +00:00
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="BackgroundMode" >
|
|
|
|
<param name="android-package"
|
|
|
|
value="de.appplant.cordova.plugin.background.BackgroundMode"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
2014-02-13 13:22:21 +00:00
|
|
|
<preference name="KeepRunning" value="true" />
|
|
|
|
</config-file>
|
2014-10-26 15:47:18 +00:00
|
|
|
|
|
|
|
<config-file target="AndroidManifest.xml" parent="/manifest/application">
|
|
|
|
<!--
|
|
|
|
* Puts the service in a foreground state, where the system considers
|
|
|
|
* it to be something the user is actively aware of and thus not a
|
|
|
|
* candidate for killing when low on memory.
|
|
|
|
-->
|
2014-12-13 23:04:12 +00:00
|
|
|
<service android:name="de.appplant.cordova.plugin.background.ForegroundService" />
|
2014-10-26 15:47:18 +00:00
|
|
|
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file
|
|
|
|
src="src/android/BackgroundMode.java"
|
|
|
|
target-dir="src/de/appplant/cordova/plugin/background" />
|
|
|
|
|
|
|
|
<source-file
|
|
|
|
src="src/android/ForegroundService.java"
|
|
|
|
target-dir="src/de/appplant/cordova/plugin/background" />
|
|
|
|
|
2014-02-13 13:22:21 +00:00
|
|
|
</platform>
|
|
|
|
|
2013-10-08 15:11:35 +00:00
|
|
|
<!-- wp8 -->
|
|
|
|
<platform name="wp8">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="BackgroundMode">
|
2014-12-13 23:04:12 +00:00
|
|
|
<param name="wp-package" value="BackgroundMode" />
|
2013-10-08 15:11:35 +00:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<!-- The app is able to run in background through location-tracking mode -->
|
|
|
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Tasks/DefaultTask">
|
|
|
|
<BackgroundExecution>
|
|
|
|
<ExecutionType Name="LocationTracking" />
|
|
|
|
</BackgroundExecution>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
|
|
|
<Capability Name="ID_CAP_LOCATION" />
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/wp8/BackgroundMode.cs" />
|
|
|
|
</platform>
|
2013-10-08 08:51:17 +00:00
|
|
|
</plugin>
|