diff --git a/CHANGELOG.md b/CHANGELOG.md index 47de0e7..1d9fe40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. +## 1.2.1 + +### Fixes +- Fix: [Android] Updates dependency to OSCordova (https://outsystemsrd.atlassian.net/browse/RPM-5093) + ## 1.2.0 ### Features diff --git a/package.json b/package.json index 9dffe7a..e07847d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.payments", - "version": "1.2.0", + "version": "1.2.1", "description": "OutSystems-owned plugin for mobile payments", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 7517b51..474e59a 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + OSPayments OutSystems-owned plugin for mobile payments OutSystems Inc diff --git a/src/android/com/outsystems/payments/OSPayments.kt b/src/android/com/outsystems/payments/OSPayments.kt index bb83904..21f1cbd 100644 --- a/src/android/com/outsystems/payments/OSPayments.kt +++ b/src/android/com/outsystems/payments/OSPayments.kt @@ -126,6 +126,10 @@ class OSPayments : CordovaImplementation() { // Does nothing. These permissions are not required on Android. } + override fun onResume(multitasking: Boolean) { + // Not used in this project. + } + override fun areGooglePlayServicesAvailable(): Boolean { // Not used in this project. return false diff --git a/src/android/com/outsystems/payments/build.gradle b/src/android/com/outsystems/payments/build.gradle index d0d6d85..b6dc8d7 100644 --- a/src/android/com/outsystems/payments/build.gradle +++ b/src/android/com/outsystems/payments/build.gradle @@ -28,7 +28,7 @@ apply plugin: 'kotlin-kapt' dependencies { implementation("com.github.outsystems:oscore-android:1.2.0@aar") - implementation("com.github.outsystems:oscordova-android:2.0.0@aar") + implementation("com.github.outsystems:oscordova-android:2.0.1@aar") implementation("com.github.outsystems:ospayments-android:1.1.0@aar") implementation 'com.stripe:stripe-android:20.5.0'