forked from cmgustavo/cordova-apple-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
executable file
·34 lines (25 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-apple-wallet-ng" version="1.0.3">
<name>AppleWallet</name>
<description>This plugin allows you to add passes and credit/debit cards to Apple Wallet</description>
<author>TOoma | Designes</author>
<keywords>Apple,Wallet,iOS</keywords>
<license>Apache 2.0</license>
<engines>
<engine name="cordova" version=">=9.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<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" />
</platform>
</plugin>