This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
forked from loganthompson/cordova-cardflight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
39 lines (35 loc) · 1.59 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-cardflight" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>CDVCardFlight</name>
<js-module name="CDVCardFlight" src="www/CDVCardFlight.js">
<clobbers target="cardflight" />
</js-module>
<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/CFTAttacheReader.h" />
<header-file src="src/ios/CFTBaseReader.h" />
<header-file src="src/ios/CFTCustomEntryTextField.h" />
<header-file src="src/ios/CFTCustomView.h" />
<header-file src="src/ios/CFTEnum.h" />
<header-file src="src/ios/CFTPaymentView.h" />
<header-file src="src/ios/CFTSessionManager.h" />
<header-file src="src/ios/CFTAPIResource.h" />
<source-file src="src/ios/CDVCardFlight.m" />
<source-file src="src/ios/libCardFlightLibrary.a" framework="true" />
<framework src="AVFoundation.framework" />
<framework src="AudioToolbox.framework" />
<framework src="MediaPlayer.framework" />
<framework src="MessageUI.framework" />
<framework src="CoreGraphics.framework" />
<framework src="libstdc++.6.0.9.tbd" />
</platform>
</plugin>