forked from transistorsoft/cordova-plugin-background-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
42 lines (34 loc) · 1.46 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-background-fetch"
version="3.0.4">
<name>CDVBackgroundFetch</name>
<description>Cordova Background Fetch Plugin</description>
<license>MIT</license>
<repo>https://github.com/christocracy/cordova-plugin-background-fetch</repo>
<issue>https://github.com/christocracy/cordova-plugin-background-fetch/issues</issue>
<keywords>phonegap,cordova,background fetch</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/BackgroundFetch.js" name="BackgroundFetch">
<clobbers target="window.BackgroundFetch" />
</js-module>
<platform name="ios">
<!-- required background modes: App registers for location updates -->
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>fetch</string>
</array>
</config-file>
<config-file target="config.xml" parent="/*">
<feature name="BackgroundFetch">
<param name="ios-package" value="CDVBackgroundFetch"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<source-file src="src/ios/CDVBackgroundFetch.m" />
<header-file src="src/ios/CDVBackgroundFetch.h" />
</platform>
</plugin>