forked from guy-keller/cordova-watchconnectivity-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
31 lines (24 loc) · 1006 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
30
31
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-watchconnectivity-plugin"
version="1.3.0">
<name>cordova-watchconnectivity-plugin</name>
<engines>
<engine name="cordova" version=">=3.4.1"/>
</engines>
<asset src="www/cordova-watchconnectivity-plugin.js" target="js/cordova-watchconnectivity-plugin.js"/>
<js-module src="www/cordova-watchconnectivity-plugin.js" name="WatchConnectivity">
<clobbers target="cordova.WatchConnectivity" />
<clobbers target="window.WatchConnectivity" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WatchConnectivity">
<param name="ios-package" value="WCiOS" />
</feature>
</config-file>
<header-file src="src/ios/WCiOS.h" target-dir="WCPlugin"/>
<source-file src="src/ios/WCiOS.m" target-dir="WCPlugin"/>
<framework src="WatchConnectivity.framework" />
</platform>
</plugin>