cordova-plugin-googlepay-button 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,7 +11,7 @@ cordova plugin add cordova-plugin-googlepay-button
11
11
  or for Cordova build service, e.g. [VoltBuilder](https://volt.build/), add the following to config.xml:
12
12
 
13
13
  ```
14
- <plugin name="cordova-plugin-googlepay-button" source="npm" spec="0.0.7" />
14
+ <plugin name="cordova-plugin-googlepay-button" source="npm" spec="0.0.8" />
15
15
  ```
16
16
 
17
17
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-plugin-googlepay-button",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Cordova plugin for implementing the Google PayButton API",
5
5
  "cordova": {
6
6
  "id": "cordova-plugin-googlepay-button",
package/plugin.xml CHANGED
@@ -2,7 +2,7 @@
2
2
  <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
3
3
  xmlns:android="http://schemas.android.com/apk/res/android"
4
4
  id="cordova-plugin-googlepay-button"
5
- version="0.0.7">
5
+ version="0.0.8">
6
6
 
7
7
  <name>Google Pay Button Plugin</name>
8
8
  <description>Cordova plugin for Google Pay PayButton API integration</description>
@@ -16,7 +16,7 @@
16
16
  <platform name="android">
17
17
  <config-file target="res/xml/config.xml" parent="/*">
18
18
  <feature name="GooglePayButton">
19
- <param name="android-package" value="com.plugin.googlepay.GooglePayButton" />
19
+ <param name="android-package" value="com.plugin.googlepaybutton.GooglePayButton" />
20
20
  <param name="onload" value="false" />
21
21
  </feature>
22
22
  </config-file>
@@ -1,4 +1,4 @@
1
- package com.plugin.googlepay;
1
+ package com.plugin.googlepaybutton;
2
2
 
3
3
  import org.apache.cordova.CordovaPlugin;
4
4
  import org.apache.cordova.CallbackContext;