forked from pgdaniel/cordova_cardflight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
42 lines (37 loc) · 1.57 KB
/
Copy pathplugin.xml
File metadata and controls
42 lines (37 loc) · 1.57 KB
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
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.apache.cordova.cardflight"
version="0.2.0">
<name>Card Flight</name>
<description>Cordova Card Flight Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,creditcard,cc</keywords>
<repo></repo>
<js-module src="www/cardFlight.js" name="cardFlight">
<clobbers target="cardFlight" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CDVCardFlight">
<param name="ios-package" value="CDVCardFlight"/>
</feature>
</config-file>
<header-file src="src/ios/CDVCardFlight.h" />
<header-file src="src/ios/CardFlight.h" />
<header-file src="src/ios/CFTReader.h" />
<header-file src="src/ios/CFTCard.h" />
<header-file src="src/ios/CFTCharge.h" />
<header-file src="src/ios/CFTAPIResource.h" />
<source-file src="src/ios/CDVCardFlight.m" />
<framework src="AVFoundation.framework" />
<framework src="AudioToolbox.framework" />
<framework src="MediaPlayer.framework" />
<framework src="MessageUI.framework" />
<framework src="ExternalAccessory.framework" />
<framework src="CoreGraphics.framework" />
<source-file src="src/ios/libCardFlightLibrary.a" framework="true" />
</platform>
</plugin>