2013-10-08 10:51:17 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2013-10-10 12:21:20 +02:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-12-09 13:36:43 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-02-29 09:55:07 +01:00
|
|
|
id="cordova-plugin-background-mode"
|
2017-01-26 14:54:13 +01:00
|
|
|
version="0.7.0-dev">
|
2013-10-08 10:51:17 +02:00
|
|
|
|
|
|
|
<name>BackgroundMode</name>
|
|
|
|
|
2016-08-16 13:18:04 +02:00
|
|
|
<description>Prevent apps from going to sleep in background.</description>
|
2014-11-17 14:06:54 +01:00
|
|
|
|
2013-12-09 13:36:43 +01:00
|
|
|
<repo>https://github.com/katzer/cordova-plugin-background-mode.git</repo>
|
2014-11-17 14:06:54 +01:00
|
|
|
|
2015-03-03 15:08:11 +01:00
|
|
|
<keywords>appplant, background</keywords>
|
2014-11-17 14:06:54 +01:00
|
|
|
|
2013-12-09 13:36:43 +01:00
|
|
|
<license>Apache 2.0</license>
|
2013-10-08 10:51:17 +02:00
|
|
|
|
2013-12-09 13:36:43 +01:00
|
|
|
<author>Sebastián Katzer</author>
|
2013-10-08 10:51:17 +02:00
|
|
|
|
2014-11-04 14:57:03 +00:00
|
|
|
<!-- dependencies -->
|
2016-02-29 10:03:50 +01:00
|
|
|
<dependency id="cordova-plugin-device" />
|
2014-11-04 14:57:03 +00:00
|
|
|
|
2014-10-26 16:47:18 +01:00
|
|
|
<!-- cordova -->
|
2013-10-08 10:51:17 +02:00
|
|
|
<engines>
|
2016-08-17 14:25:15 +02:00
|
|
|
<engine name="cordova" version=">=3.0.0" />
|
|
|
|
<engine name="android-sdk" version=">=16" />
|
2013-10-08 10:51:17 +02:00
|
|
|
</engines>
|
2013-10-08 11:00:36 +02:00
|
|
|
|
2014-10-26 16:47:18 +01:00
|
|
|
<!-- js -->
|
2013-10-09 10:50:15 +02: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 15:25:36 +02:00
|
|
|
<clobbers target="plugin.backgroundMode" />
|
2013-10-09 10:50:15 +02:00
|
|
|
</js-module>
|
|
|
|
|
2013-10-08 11:00:36 +02:00
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
2014-01-30 17:21:10 +01:00
|
|
|
<feature name="BackgroundMode">
|
2014-11-17 14:06:54 +01:00
|
|
|
<param name="ios-package" value="APPBackgroundMode" />
|
2014-01-30 17:21:10 +01:00
|
|
|
</feature>
|
2013-10-08 11:00:36 +02:00
|
|
|
</config-file>
|
|
|
|
|
2013-10-08 15:49:34 +02:00
|
|
|
<config-file target="*-Info.plist" parent="UIBackgroundModes">
|
2013-10-08 14:36:19 +02:00
|
|
|
<array>
|
2014-11-04 13:05:45 +00:00
|
|
|
<string>audio</string>
|
2013-10-08 14:36:19 +02:00
|
|
|
</array>
|
2013-10-08 15:49:34 +02:00
|
|
|
</config-file>
|
2013-10-08 14:36:19 +02:00
|
|
|
|
2014-12-14 00:57:22 +01:00
|
|
|
<resource-file src="appbeep.wav" />
|
2013-10-08 14:50:18 +02:00
|
|
|
|
2014-01-30 17:21:10 +01:00
|
|
|
<header-file src="src/ios/APPBackgroundMode.h" />
|
|
|
|
<source-file src="src/ios/APPBackgroundMode.m" />
|
2017-01-17 14:02:16 +01:00
|
|
|
<header-file src="src/ios/APPMethodMagic.h" />
|
|
|
|
<source-file src="src/ios/APPMethodMagic.m" />
|
2013-10-08 11:00:36 +02:00
|
|
|
</platform>
|
2013-10-08 17:11:35 +02:00
|
|
|
|
2014-02-13 14:22:21 +01:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2014-10-26 16:47:18 +01: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 14:22:21 +01:00
|
|
|
<preference name="KeepRunning" value="true" />
|
|
|
|
</config-file>
|
2014-10-26 16:47:18 +01:00
|
|
|
|
|
|
|
<config-file target="AndroidManifest.xml" parent="/manifest/application">
|
2014-12-14 00:04:12 +01:00
|
|
|
<service android:name="de.appplant.cordova.plugin.background.ForegroundService" />
|
2016-08-17 11:14:47 +02:00
|
|
|
</config-file>
|
2014-10-26 16:47:18 +01:00
|
|
|
|
2016-08-17 11:14:47 +02:00
|
|
|
<config-file target="AndroidManifest.xml" parent="/manifest">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2014-10-26 16:47:18 +01: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 14:22:21 +01:00
|
|
|
</platform>
|
|
|
|
|
2017-01-26 14:54:13 +01:00
|
|
|
<!-- windows (10.14393)
|
2017-01-17 14:02:16 +01:00
|
|
|
<platform name="windows">
|
2013-10-08 17:11:35 +02:00
|
|
|
<config-file target="config.xml" parent="/*">
|
2017-01-17 14:02:16 +01:00
|
|
|
<feature name="BackgroundMode" >
|
|
|
|
<param name="windows-package" value="BackgroundMode"/>
|
2013-10-08 17:11:35 +02:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2017-01-21 17:47:54 +01:00
|
|
|
<config-file target="package.appxmanifest" parent="/Package/Capabilities" device-target="windows">
|
2017-01-27 09:45:19 +01:00
|
|
|
https://issues.apache.org/jira/browse/CB-12380
|
2017-01-21 17:47:54 +01:00
|
|
|
<Capability Name="backgroundMediaPlayback" />
|
|
|
|
</config-file>
|
|
|
|
|
2017-01-27 09:45:19 +01:00
|
|
|
https://github.com/apache/cordova-windows/pull/213
|
2017-01-21 17:47:54 +01:00
|
|
|
<resource-file src="appbeep.wma" target="appbeep.wma" />
|
|
|
|
|
|
|
|
<js-module src="src/windows/BackgroundModeProxy.js" name="BackgroundModeProxy">
|
2017-01-17 14:02:16 +01:00
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
2017-01-26 14:54:13 +01:00
|
|
|
</platform> -->
|
2015-11-25 11:24:11 -05:00
|
|
|
|
2017-01-27 10:23:46 +01:00
|
|
|
<!-- browser -->
|
|
|
|
<platform name="browser">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="BackgroundMode">
|
|
|
|
<param name="browser-package" value="BackgroundMode"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<js-module src="src/browser/BackgroundModeProxy.js" name="BackgroundMode.Proxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
2013-10-08 10:51:17 +02:00
|
|
|
</plugin>
|