Skip to content

Commit

Permalink
chore: bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
pr-Mais committed Sep 4, 2022
1 parent 786635a commit 6899f87
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 1.0.0-dev.3

* Fix: bumping to SDK version 4.5.0
* BREAKING: the AAR files are now bundled with the plugin, therefore a couple changes are needed to upgrade to this version:
1. Remove any of these dependencies in your `app/build.gradle`:
```groovy
implementation project(":oppwa.mobile")
implementation "androidx.appcompat:appcompat:1.3.1"
implementation "com.google.android.material:material:1.4.0"
implementation "com.google.android.gms:play-services-base:17.6.0"
```
2. Add a dependency over the AAR file:
```groovy
implementation (name:'oppwa.mobile-4.5.0-release', ext:'aar')
```
3. in `settings.gradle`, remove the following line:
```groovy
include ':oppwa.mobile'
```
4. Finally, remove the folder `oppwa.mobile` from the root `android` folder in your app.
## 1.0.0-dev.2

* Fix: Apple Pay transactions was being rejected.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: hyperpay
description: A plugin to wrap HyperPay mobile SDK for iOS and Android, used to accept payments in Flutter apps using HyperPay Payments Gateway.
version: 1.0.0-dev.2
version: 1.0.0-dev.3
repository: https://github.com/nyartech/hyperpay

environment:
Expand Down

0 comments on commit 6899f87

Please sign in to comment.