forked from orinocoz/wazelink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·31 lines (29 loc) · 1.13 KB
/
plugin.xml
File metadata and controls
executable file
·31 lines (29 loc) · 1.13 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cr.encke.WazeLink" version="1.0.1">
<name>WazeLink</name>
<description>Waze Link</description>
<license>Apache 2.0</license>
<keywords>cordova,wazelink</keywords>
<js-module src="www/WazeLink.js" name="WazeLink">
<clobbers target="WazeLink.open" />
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="WazeLink">
<param name="android-package" value="cr.encke.WazeLink.WazeLink" />
</feature>
</config-file>
<source-file src="src/android/cr/encke/WazeLink/WazeLink.java"
target-dir="src/cr/encke/WazeLink" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WazeLink">
<param name="ios-package" value="WazeLink" />
</feature>
</config-file>
<header-file src="src/ios/WazeLink.h" />
<source-file src="src/ios/WazeLink.m" />
</platform>
</plugin>