This repository has been archived by the owner on May 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
64 lines (54 loc) · 2.74 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="cordova-plugin-google-payments"
version="2.1.2-dev">
<description>
Enable in-app-purchases in the App Store and Play Store using a mobile version of the Google Wallet for Digital Goods API
</description>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>Chrome Payments API</name>
<keywords>google,payment,purchase,wallet</keywords>
<repo>https://github.com/MobileChromeApps/mobile-chrome-apps.git</repo>
<issue>https://github.com/MobileChromeApps/mobile-chrome-apps/issues</issue>
<dependency id="cc.fovea.plugins.inapppurchase@3" />
<dependency id="cordova-plugin-chrome-apps-common@1" />
<js-module src="www/google.payments.js" name="payments">
<clobbers target="google.payments" />
</js-module>
<platform name="android">
<js-module src="www/android/google.payments.js" name="androidPayments">
<merges target="google.payments" />
</js-module>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="com.android.vending.BILLING" />
</config-file>
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="InAppBillingV3">
<param name="android-package" value="com.google.payments.InAppBillingV3"/>
</feature>
</config-file>
<source-file src="src/android/InAppBillingV3.java" target-dir="src/com/google/payments" />
<source-file src="src/android/Base64.java" target-dir="src/com/google/payments" />
<source-file src="src/android/Base64DecoderException.java" target-dir="src/com/google/payments" />
<source-file src="src/android/IabException.java" target-dir="src/com/google/payments" />
<source-file src="src/android/IabHelper.java" target-dir="src/com/google/payments" />
<source-file src="src/android/IabResult.java" target-dir="src/com/google/payments" />
<source-file src="src/android/Inventory.java" target-dir="src/com/google/payments" />
<source-file src="src/android/Purchase.java" target-dir="src/com/google/payments" />
<source-file src="src/android/Security.java" target-dir="src/com/google/payments" />
<source-file src="src/android/SkuDetails.java" target-dir="src/com/google/payments" />
<source-file src="src/android/billing/IInAppBillingService.aidl" target-dir="src/com/android/vending/billing" />
</platform>
<platform name="ios">
<js-module src="www/ios/google.payments.js" name="iosPayments">
<merges target="google.payments" />
</js-module>
</platform>
</plugin>