forked from dpa99c/phonegap-launch-navigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
109 lines (89 loc) · 3.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?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="uk.co.workingedge.phonegap.plugin.launchnavigator"
version="4.0.3">
<name>Launch Navigator</name>
<description>Cordova/Phonegap plugin to navigate to a destination using native navigation apps on Android, iOS, and Windows Phone</description>
<author>Dave Alden</author>
<engines>
<engine name="cordova" version=">=4.0.0" />
</engines>
<repo>https://github.com/dpa99c/phonegap-launch-navigator.git</repo>
<issue>https://github.com/dpa99c/phonegap-launch-navigator/issues</issue>
<license>MIT</license>
<keywords>cordova,phonegap,ios,android,windows,navigation,navigator</keywords>
<js-module src="www/common.js" name="Common">
<clobbers target="launchnavigator" />
</js-module>
<js-module src="www/localforage.v1.5.0.min.js" name="LocalForage">
<clobbers target="localforage" />
</js-module>
<!-- android -->
<platform name="android">
<dependency id="cordova-plugin-actionsheet" version="2" />
<dependency id="cordova-plugin-dialogs" version="1" />
<js-module src="www/android/launchnavigator.js" name="LaunchNavigator">
<merges target="launchnavigator" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="LaunchNavigator">
<param name="android-package" value="uk.co.workingedge.phonegap.plugin.LaunchNavigator"/>
</feature>
</config-file>
<source-file src="src/android/LaunchNavigator.java" target-dir="src/uk/co/workingedge/phonegap/plugin" />
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<framework src="com.squareup.okhttp3:okhttp:3+" />
</platform>
<!-- ios -->
<platform name="ios">
<dependency id="cordova-plugin-actionsheet" version="2" />
<dependency id="cordova-plugin-dialogs" version="1" />
<js-module src="www/ios/launchnavigator.js" name="LaunchNavigator">
<merges target="launchnavigator" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="LaunchNavigator">
<param name="ios-package" value="LaunchNavigator"/>
</feature>
</config-file>
<header-file src="src/ios/LaunchNavigator.h" />
<source-file src="src/ios/LaunchNavigator.m" />
<header-file src="src/ios/Reachability.h" />
<source-file src="src/ios/Reachability.m" />
<framework src="MapKit.framework" />
<framework src="CoreLocation.framework" />
<framework src="SystemConfiguration.framework" />
<config-file target="*-Info.plist" parent="LSApplicationQueriesSchemes">
<array>
<string>citymapper</string>
<string>comgooglemaps</string>
<string>navigon</string>
<string>transit</string>
<string>waze</string>
<string>yandexnavi</string>
<string>uber</string>
<string>tomtomhome</string>
<string>com.sygic.aura</string>
<string>here-route</string>
<string>moovit</string>
<string>lyft</string>
</array>
</config-file>
</platform>
<!-- windows -->
<platform name="windows">
<js-module src="www/windows/launchnavigator.js" name="LaunchNavigator">
<merges target="launchnavigator" />
</js-module>
</platform>
<!-- wp8 -->
<platform name="wp8">
<js-module src="www/wp8/launchnavigator.js" name="LaunchNavigator">
<merges target="launchnavigator" />
</js-module>
</platform>
</plugin>