-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
plugin.xml
executable file
·36 lines (26 loc) · 1.25 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-apple-wallet" version="1.0.0">
<name>AppleWallet</name>
<description>This plugin provides support for adding your credit/debit cards to Apple Wallet. It also can check if the credit/debit card exists in Wallet or any paired device e.g. Apple Watch </description>
<author>Enigma Labs</author>
<keywords>Apple,Wallet,iOS</keywords>
<license>Apache 2.0</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<hook src="hooks/before_build.js" type="before_build" />
<config-file target="config.xml" parent="/*">
<feature name="AppleWallet">
<param name="ios-package" value="AppleWallet" onload="true"/>
</feature>
</config-file>
<js-module src="www/appleWallet.js" name="AppleWallet">
<clobbers target="AppleWallet" />
</js-module>
<header-file src="src/ios/CDVAppleWallet.h" />
<source-file src="src/ios/CDVAppleWallet.m" />
<framework src="PassKit.framework" />
<framework src="WatchConnectivity.framework" />
</platform>
</plugin>