-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
33 lines (25 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-dynamic-applepay-stripe"
version="1.0.5">
<name>Apple Pay with Stripe</name>
<description>Implements Apple Pay with Stripe.</description>
<keywords>cordova,payment,apple pay,stripe</keywords>
<repo>https://github.com/monoku/cordova-plugin-applepay-stripe</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>
<!-- Stripe iOS Framework -->
<!-- Downloaded here: https://github.com/stripe/stripe-ios/releases/latest -->
<framework src="src/ios/libs/Stripe.framework" custom="true" />
</platform>
</plugin>