forked from j3k0/cordova-plugin-purchase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
39 lines (33 loc) · 1.31 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
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cc.fovea.plugins.inapppurchase"
version="3.4.1">
<name>InAppPurchase</name>
<description>In app purchase support for iOS</description>
<engines>
<engine name="cordova" version=">=2.4.0" />
</engines>
<license>MIT</license>
<keywords>cordova,phonegap,purchase,storekit,ios</keywords>
<!-- ios -->
<platform name="ios">
<js-module src="InAppPurchase.js" name="InAppPurchase">
<clobbers target="storekit" />
</js-module>
<!-- Cordova 2.2 -->
<plugins-plist key="InAppPurchase" string="InAppPurchase" />
<!-- Cordova 2.5+ -->
<config-file target="config.xml" parent="/*">
<feature name="InAppPurchase">
<param name="ios-package" value="InAppPurchase"/>
</feature>
</config-file>
<header-file src="src/ios/InAppPurchase.h" />
<source-file src="src/ios/InAppPurchase.m" />
<header-file src="src/ios/SKProduct+LocalizedPrice.h" />
<source-file src="src/ios/SKProduct+LocalizedPrice.m" />
<framework src="StoreKit.framework" />
</platform>
</plugin>