-
Notifications
You must be signed in to change notification settings - Fork 39
/
plugin.xml
30 lines (28 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-market" version="1.2.0">
<name>Market</name>
<description>Cordova Plugin for access to Google Play and Apple Store within your app</description>
<license>Apache 2.0</license>
<keywords>cordova,market,store,itunes,play</keywords>
<js-module src="www/market.js" name="Market">
<clobbers target="cordova.plugins.market" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Market">
<param name="android-package" value="com.xmartlabs.cordova.market.Market"/>
</feature>
</config-file>
<source-file src="src/android/Market.java" target-dir="src/com/xmartlabs/cordova/market" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Market">
<param name="ios-package" value="CDVMarket"/>
</feature>
</config-file>
<header-file src="src/ios/CDVMarket.h" />
<source-file src="src/ios/CDVMarket.m" />
</platform>
</plugin>