-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
31 lines (25 loc) · 1.03 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-swifty-iap-plugin" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>SwiftyIAP</name>
<platform name="ios">
<preference name="deployment-target" value="13.0" />
<config-file target="config.xml" parent="/*">
<feature name="SwiftyIAP">
<param name="ios-package" value="SwiftyIAP" />
</feature>
</config-file>
<js-module name="SwiftyIAP" src="www/SwiftyIAP.js">
<clobbers target="SwiftyIAP" />
</js-module>
<source-file src="src/ios/SwiftyIAP.swift" />
<podspec>
<config>
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="SwiftyStoreKit"/>
</pods>
</podspec>
<dependency id="cordova-plugin-add-swift-support" version="2.0.2"/>
</platform>
</plugin>