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"
|
2017-02-02 14:29:28 +00:00
|
|
|
version="0.7.2">
|
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>
|
2017-02-05 09:47:34 +00:00
|
|
|
<engine name="cordova" version=">=3.0.0" />
|
|
|
|
<engine name="android-sdk" version=">=16" />
|
|
|
|
<engine name="windows-sdk" version=">=10.0.14393.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">
|
2018-01-09 19:46:33 +00:00
|
|
|
<param name="ios-package" value="APPBackgroundMode" onload="true" />
|
|
|
|
<param name="onload" value="true" />
|
2014-01-30 16:21:10 +00:00
|
|
|
</feature>
|
2013-10-08 09:00:36 +00:00
|
|
|
</config-file>
|
|
|
|
|
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" />
|
2017-01-17 13:02:16 +00:00
|
|
|
<header-file src="src/ios/APPMethodMagic.h" />
|
|
|
|
<source-file src="src/ios/APPMethodMagic.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">
|
2014-12-13 23:04:12 +00:00
|
|
|
<service android:name="de.appplant.cordova.plugin.background.ForegroundService" />
|
2016-08-17 09:14:47 +00:00
|
|
|
</config-file>
|
2014-10-26 15:47:18 +00:00
|
|
|
|
2016-08-17 09:14:47 +00:00
|
|
|
<config-file target="AndroidManifest.xml" parent="/manifest">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2019-02-08 17:45:03 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
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" />
|
|
|
|
|
2017-01-30 10:36:10 +00:00
|
|
|
<source-file
|
2017-01-30 11:05:25 +00:00
|
|
|
src="src/android/BackgroundExt.java"
|
2017-01-30 10:36:10 +00:00
|
|
|
target-dir="src/de/appplant/cordova/plugin/background" />
|
|
|
|
|
2014-10-26 15:47:18 +00:00
|
|
|
<source-file
|
|
|
|
src="src/android/ForegroundService.java"
|
|
|
|
target-dir="src/de/appplant/cordova/plugin/background" />
|
2014-02-13 13:22:21 +00:00
|
|
|
</platform>
|
|
|
|
|
2017-01-27 13:46:17 +00:00
|
|
|
<!-- windows
|
2017-01-17 13:02:16 +00:00
|
|
|
<platform name="windows">
|
2013-10-08 15:11:35 +00:00
|
|
|
<config-file target="config.xml" parent="/*">
|
2017-01-17 13:02:16 +00:00
|
|
|
<feature name="BackgroundMode" >
|
|
|
|
<param name="windows-package" value="BackgroundMode"/>
|
2013-10-08 15:11:35 +00:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2017-01-21 16:47:54 +00:00
|
|
|
<config-file target="package.appxmanifest" parent="/Package/Capabilities" device-target="windows">
|
|
|
|
<Capability Name="backgroundMediaPlayback" />
|
|
|
|
</config-file>
|
|
|
|
|
2017-01-27 13:46:17 +00:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<preference name="windows-target-version" value="UAP" />
|
|
|
|
<preference name="uap-target-min-version" value="10.0.14393.0" />
|
|
|
|
<preference name="Windows.Universal-MinVersion" value="10.0.14393.0" />
|
2017-01-29 10:16:53 +00:00
|
|
|
<preference name="Windows.Universal" value="10.0.14393.0" />
|
2017-01-27 13:46:17 +00:00
|
|
|
</config-file>
|
|
|
|
|
2017-01-21 16:47:54 +00:00
|
|
|
<resource-file src="appbeep.wma" target="appbeep.wma" />
|
|
|
|
|
2017-01-27 13:46:17 +00:00
|
|
|
<js-module src="src/windows/BackgroundModeProxy.js" name="BackgroundMode.Proxy">
|
|
|
|
<runs />
|
2017-01-17 13:02:16 +00:00
|
|
|
</js-module>
|
2017-01-26 13:54:13 +00:00
|
|
|
</platform> -->
|
2015-11-25 16:24:11 +00:00
|
|
|
|
2017-01-27 09:23:46 +00: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 08:51:17 +00:00
|
|
|
</plugin>
|