-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
29 lines (22 loc) · 836 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="com.github.jbaez.plugins.BackgroundTask"
version="0.1.0">
<name>BackgroundTask</name>
<engines>
<engine name="cordova" version=">=2.2.0" />
</engines>
<js-module src="www/background-task.js" name="BackgroundTask">
<clobbers target="BackgroundTask" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="BackgroundTask">
<param name="ios-package" value="BackgroundTask" />
</feature>
</config-file>
<header-file src="src/ios/BackgroundTask.h" />
<source-file src="src/ios/BackgroundTask.m" />
</platform>
</plugin>