-
Notifications
You must be signed in to change notification settings - Fork 43
/
plugin.xml
44 lines (44 loc) · 2.29 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
<?xml version='1.0' encoding='UTF-8'?>
<plugin id="cordova-plugin-apple-watch" version="0.11.5" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Apple Watch</name>
<author>Lee Crossley (http://ilee.co.uk/)</author>
<description>Cordova / PhoneGap Plugin for the Apple Watch (WatchKit) to allow communication
between a Cordova app and an Apple WatchKit Extension (and vice versa)</description>
<keywords>cordova, apple, watch, watchkit, message, queue, json, extension,
darwin, notification, glance, user, defaults, nsuserdefaults</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
<engine name="apple-ios" version=">=8.2.0"/>
</engines>
<js-module name="AppleWatch" src="www/applewatch.js">
<clobbers target="applewatch"/>
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="AppleWatch">
<param name="ios-package" value="AppleWatch"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<header-file src="src/ios/AppleWatch.h"/>
<source-file src="src/ios/AppleWatch.m"/>
<header-file src="src/ios/MMWormhole.h"/>
<source-file src="src/ios/MMWormhole.m"/>
<header-file src="src/ios/MMWormholeCoordinatedFileTransiting.h"/>
<source-file src="src/ios/MMWormholeCoordinatedFileTransiting.m"/>
<header-file src="src/ios/MMWormholeFileTransiting.h"/>
<source-file src="src/ios/MMWormholeFileTransiting.m"/>
<source-file src="src/ios/MMWormholeSession.h"/>
<source-file src="src/ios/MMWormholeSession.m"/>
<source-file src="src/ios/MMWormholeSessionContextTransiting.h"/>
<source-file src="src/ios/MMWormholeSessionContextTransiting.m"/>
<source-file src="src/ios/MMWormholeSessionFileTransiting.h"/>
<source-file src="src/ios/MMWormholeSessionFileTransiting.m"/>
<source-file src="src/ios/MMWormholeSessionMessageTransiting.h"/>
<source-file src="src/ios/MMWormholeSessionMessageTransiting.m"/>
<source-file src="src/ios/MMWormholeTransiting.h"/>
<framework src="Foundation.framework"/>
<framework src="WatchConnectivity.framework"/>
</platform>
</plugin>