Skip to content

Commit

Permalink
Merge pull request #48 from OutSystems/development
Browse files Browse the repository at this point in the history
RMET-3450 :: prepare for release
  • Loading branch information
OS-martacarlos committed Jul 17, 2024
2 parents 3a88c45 + 755cfb1 commit da25544
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin id="com.outsystems.payments" version="1.2.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="com.outsystems.payments" version="1.2.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>OSPayments</name>
<description>OutSystems-owned plugin for mobile payments</description>
<author>OutSystems Inc</author>
Expand Down
4 changes: 4 additions & 0 deletions src/android/com/outsystems/payments/OSPayments.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/android/com/outsystems/payments/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit da25544

Please sign in to comment.