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

119 lines
4.5 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"
version="0.8.0">
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
2019-11-08 15:45:16 +00:00
<repo>https://bitbucket.org:TheBosZ/cordova-plugin-run-in-background.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>
<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">
<param name="ios-package" value="APPBackgroundMode" onload="true" />
<param name="onload" value="true" />
</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>
<feature name="BackgroundModeExt">
<param name="android-package" value="de.appplant.cordova.plugin.background.BackgroundModeExt"/>
2014-10-26 15:47:18 +00:00
</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" />
2019-07-29 15:53:38 +00:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
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
src="src/android/BackgroundModeExt.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" />
<framework src="androidx.core:core:1.0.0" />
<dependency id="cordova-androidx-build" />
<resource-file src="src/android/res/drawable/power.xml" target="res/drawable/power.xml" />
<resource-file src="src/android/res/drawable-hdpi/power.png" target="res/drawable-hdpi/power.png" />
<resource-file src="src/android/res/drawable-mdpi/power.png" target="res/drawable-mdpi/power.png" />
<resource-file src="src/android/res/drawable-xhdpi/power.png" target="res/drawable-xhdpi/power.png" />
<resource-file src="src/android/res/drawable-xxhdpi/power.png" target="res/drawable-xxhdpi/power.png" />
2014-02-13 13:22:21 +00:00
</platform>
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>