-
Notifications
You must be signed in to change notification settings - Fork 63
/
plugin.xml
30 lines (22 loc) · 892 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-applepay"
version="5.0.0">
<name>Apple Pay</name>
<description>Implements Apple Pay.</description>
<keywords>cordova,payment,apple pay</keywords>
<repo>https://github.com/samkelleher/cordova-plugin-applepay</repo>
<platform name="ios">
<js-module src="www/applepay.js" name="payment">
<clobbers target="ApplePay" />
</js-module>
<framework src="PassKit.framework"/>
<header-file src="src/ios/CDVApplePay.h"/>
<source-file src="src/ios/CDVApplePay.m"/>
<config-file target="config.xml" parent="/*">
<feature name="ApplePay">
<param name="ios-package" value="CDVApplePay"/>
</feature>
</config-file>
</platform>
</plugin>