-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
40 lines (28 loc) · 1.36 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.phonegap.plugins.cardiogp"
version="0.0.1">
<name>CardIOPGPlugin</name>
<author>Gilles Haiat</author>
<license>Apache</license>
<!-- ios -->
<platform name="ios">
<asset src="www/CardIOPGPlugin.js" target="CardIOPGPlugin.js" />
<config-file target="config.xml" parent="/*">
<feature name="CardIOPGPlugin">
<param name="ios-package" value="CardIOPGPlugin" />
</feature>
</config-file>
<header-file src="src/ios/CardIO/CardIO.h" />
<header-file src="src/ios/CardIO/CardIOCreditCardInfo.h" />
<header-file src="src/ios/CardIO/CardIOPaymentViewController.h" />
<header-file src="src/ios/CardIO/CardIOPaymentViewControllerDelegate.h" />
<header-file src="src/ios/CardIO/CardIOView.h" />
<header-file src="src/ios/CardIO/CardIOViewDelegate.h" />
<source-file src="src/ios/CardIO/libCardIO.a" framework="true" compiler-flags="-lc++ -ObjC"/>
<header-file src="src/ios/CardIOPGPlugin.h" />
<source-file src="src/ios/CardIOPGPlugin.m" />
<framework src="AVFoundation.framework" weak="true"/>
</platform>
</plugin>