Skip to content

Commit 5eed9ba

Browse files
Merge pull request #61 from OutSystems/fix/RMET-4294/gson-missing
RMET-4294 :: Missing GSON dependency
2 parents 15598de + e10e549 commit 5eed9ba

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ The changes documented here do not include those from the original repository.
88

99
## 1.2.5
1010

11+
### Fixes
12+
- (android) Add missing Gson gradle dependency
13+
14+
## 1.2.5
15+
1116
### Fixes
1217
- (android) Release builds With Capacitor failing.
1318

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.outsystems.payments",
3-
"version": "1.2.5",
3+
"version": "1.2.6",
44
"description": "OutSystems-owned plugin for mobile payments",
55
"keywords": [
66
"ecosystem:cordova",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<plugin id="com.outsystems.payments" version="1.2.5" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="com.outsystems.payments" version="1.2.6" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>OSPayments</name>
44
<description>OutSystems-owned plugin for mobile payments</description>
55
<author>OutSystems Inc</author>

src/android/com/outsystems/payments/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dependencies {
3737
implementation "com.google.android.gms:play-services-wallet:19.1.0"
3838
implementation "com.google.android.gms:play-services-pay:16.0.3"
3939
implementation "androidx.activity:activity-ktx:1.4.0"
40+
implementation 'com.google.code.gson:gson:2.10.1'
4041

4142
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0'
4243
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3'

0 commit comments

Comments
 (0)