-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
54 lines (40 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
<?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="cordova-plugin-bg-geolocation"
version="0.0.1">
<name>BackgroundMode</name>
<description>Prevent apps from going to sleep in background while using location.</description>
<repo>https://github.com/Anuj-Raghuvanshi/cordova-plugin-bg-geolocation.git</repo>
<keywords>background, geolocation</keywords>
<license>Apache 2.0</license>
<author>Anuj Raghuvanshi</author>
<!-- dependencies -->
<dependency id="cordova-plugin-device" />
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
<engine name="android-sdk" version=">=16" />
</engines>
<!-- js -->
<js-module src="www/background-mode.js" name="BackgroundMode">
<clobbers target="cordova.plugins.backgroundMode" />
<clobbers target="plugin.backgroundMode" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BackgroundMode">
<param name="ios-package" value="BackgroundMode" onload="true" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>location</string>
</array>
</config-file>
<header-file src="src/ios/BackgroundMode.h" />
<source-file src="src/ios/BackgroundMode.m" />
</platform>
</plugin>