-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
29 lines (28 loc) · 1.46 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-google-pay-api-for-passes"
version="1.0.0">
<name>Cordova Plugin Google Pay API for Passes</name>
<description>Cordova Plugin Google Pay API for Passes</description>
<license>MIT</license>
<keywords>cordova,googlepay</keywords>
<js-module src="www/plugin.js" name="plugin">
<runs/>
<clobbers target="GooglePay" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GooglePay" >
<param name="android-package" value="org.apache.cordova.plugin.GooglePay"/>
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:name="org.apache.cordova.plugin.GooglePayActivity" />
</config-file>
<framework src="src/android/build.gradle" custom="true" type="gradleReference"/>
<source-file src="src/android/GooglePay.java" target-dir="src/org/apache/cordova/plugin" />
<source-file src="src/android/GooglePayActivity.java" target-dir="src/org/apache/cordova/plugin" />
</platform>
</plugin>