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,6 +1,11 @@
Changelog
=========

[1.0.0-beta08](https://github.com/hyperwallet/hyperwallet-android-ui-sdk/releases/tag/1.0.0-beta08)
-------------------
* Added support for update Transfer method
* Enhancements

[1.0.0-beta07](https://github.com/hyperwallet/hyperwallet-android-ui-sdk/releases/tag/1.0.0-beta07)
-------------------
* Added Prepaid Card support
Expand Down
20 changes: 17 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-beta07'
api 'com.hyperwallet.android.ui:receiptui:1.0.0-beta07'
api 'com.hyperwallet.android.ui:transferui:1.0.0-beta07'
api 'com.hyperwallet.android.ui:transfermethodui:1.0.0-beta08'
api 'com.hyperwallet.android.ui:receiptui:1.0.0-beta08'
api 'com.hyperwallet.android.ui:transferui:1.0.0-beta08'
```

### Proguard
Expand Down Expand Up @@ -171,6 +171,20 @@ public void onClick(View view) {
}
```

### Update a transfer method
The second argument is a token that represents a Transfer method.
The third argument is boolean flag to control view orientation, <code>lockScreenToPortrait</code> set to <code>true</code>
```java
@Override
public void onClick(View view) {
Intent intent = mHyperwalletTransferMethodUi.getIntentUpdateTransferMethodActivity(
MainActivity.this,
"trm-12345",
false);
startActivity(intent);
}
```

### List the user's receipts
The second argument is boolean flag to control view orientation, <code>lockScreenToPortrait</code> set to <code>true</code>
will lock the screen to Portrait orientation otherwise it will just follow device orientation.
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-beta08-SNAPSHOT"
project.version = "1.0.0-beta09-SNAPSHOT"

}

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

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