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

109 lines
3.6 KiB
XML
Raw Normal View History

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-01-26 13:54:13 +00:00
version="0.7.0-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-17 12:25:15 +00:00
<engine name="cordova" version=">=3.0.0" />
<engine name="android-sdk" version=">=16" />
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">
<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="/*">
<feature name="BackgroundMode">
2014-11-17 13:06:54 +00:00
<param name="ios-package" value="APPBackgroundMode" />
</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>
<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
<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">
<service android:name="de.appplant.cordova.plugin.background.ForegroundService" />
</config-file>
2014-10-26 15:47:18 +00:00
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.WAKE_LOCK" />
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>
2017-01-26 13:54:13 +00:00
<!-- windows (10.14393)
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>
<config-file target="package.appxmanifest" parent="/Package/Capabilities" device-target="windows">
2017-01-27 08:45:19 +00:00
https://issues.apache.org/jira/browse/CB-12380
<Capability Name="backgroundMediaPlayback" />
</config-file>
2017-01-27 08:45:19 +00:00
https://github.com/apache/cordova-windows/pull/213
<resource-file src="appbeep.wma" target="appbeep.wma" />
<js-module src="src/windows/BackgroundModeProxy.js" name="BackgroundModeProxy">
2017-01-17 13:02:16 +00:00
<merges target="" />
</js-module>
2017-01-26 13:54:13 +00:00
</platform> -->
2015-11-25 16:24:11 +00:00
2013-10-08 08:51:17 +00:00
</plugin>