Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changelog
=========
[1.0.0-beta11](https://github.com/hyperwallet/hyperwallet-android-ui-sdk/releases/tag/1.0.0-beta11)
-------------------
* Fixed currency formatting issues
* Fixed add transfer method qraphQL calls
* Bug fixes

[1.0.0-beta10](https://github.com/hyperwallet/hyperwallet-android-ui-sdk/releases/tag/1.0.0-beta10)
-------------------
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Note that this SDK is geared towards those who need both backend data and UI fea
To install Hyperwallet UI SDK, you just need to add the dependencies into your build.gradle file in Android Studio (or Gradle). For example:

```bash
api 'com.hyperwallet.android.ui:transfermethodui:1.0.0-beta10'
api 'com.hyperwallet.android.ui:receiptui:1.0.0-beta10'
api 'com.hyperwallet.android.ui:transferui:1.0.0-beta10'
api 'com.hyperwallet.android.ui:transfermethodui:1.0.0-beta11'
api 'com.hyperwallet.android.ui:receiptui:1.0.0-beta11'
api 'com.hyperwallet.android.ui:transferui:1.0.0-beta11'
```

### Proguard
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ allprojects {

}

project.version = "1.0.0-beta11-SNAPSHOT"
project.version = "1.0.0-beta11"

}

Expand All @@ -38,7 +38,7 @@ subprojects {
targetVersion = 30
codeVersion = 1

hyperwalletCoreVersion = '1.0.0-beta10-SNAPSHOT'
hyperwalletCoreVersion = '1.0.0-beta10'
hyperwalletInsightVersion = '1.0.0-beta02'
//
androidMaterialVersion = '1.0.0'
Expand Down