forked from alexkorban/cordova-background-watchposition
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
executable file
·36 lines (27 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.geotab.BackgroundWatchPosition"
version="0.0.1">
<name>Background WatchPosition</name>
<description>
Persist watchPosition in background even on Android System WebView
</description>
<license>Proprietary</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<!-- android -->
<platform name="android">
<js-module src="www/backgroundWatchPosition.js" name="BackgroundWatchPosition">
<clobbers target="cordova.plugins.backgroundWatchPosition" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BackgroundWatchPosition">
<param name="android-package" value="com.geotab.BackgroundWatchPosition" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/geotab/BackgroundWatchPosition.java" target-dir="src/com/geotab"/>
</platform>
</plugin>