Skip to content

Commit

Permalink
Updated Direct Tap Version to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
torresejay102 committed Mar 11, 2024
1 parent afbf957 commit 293f090
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dependencies {
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'

implementation "androidx.security:security-crypto:1.1.0-alpha06"
implementation "com.brankas.tap:direct-tap:4.3.0"
implementation "com.brankas.tap:direct-tap:4.4.0"

implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2'
implementation 'com.github.bumptech.glide:glide:4.12.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ private void addListeners() {
DirectTapSDK.INSTANCE.initialize(MainActivity.this, apiKey.getText().toString(), null, false, enableLogging.isChecked());
DirectTapSDK.INSTANCE.checkout(MainActivity.this, request.build(), (CoreListener<String>) (data, error) -> {
if (null != error) {
Toast.makeText(MainActivity.this, error.getErrorMessage(), Toast.LENGTH_LONG).show();
Toast.makeText(MainActivity.this, error.getErrorCode().getCode() + " " + error.getErrorCode().getErrorMessage(), Toast.LENGTH_LONG).show();
}
}, 3000, useRememberMe.isChecked(), showActionBar.isChecked() ? actionBarText.getText().toString() : null, true);
});
Expand Down
6 changes: 6 additions & 0 deletions sdk docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## 4.4.0 - 2024-03-06

### Changed

- Error Code Mapping (Updated Error Code upon Checkout)

## 4.3.0 - 2024-02-01

### Added
Expand Down
6 changes: 3 additions & 3 deletions sdk docs/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Direct Tap SDK for Android
***
*Version:* 4.3.0
*Version:* 4.4.0
***


Expand Down Expand Up @@ -71,10 +71,10 @@ This set of instructions assumes that the IDE being used is Android Studio
```
**NOTE: You can use any GitHub Account in filling up the credentials**

2. In your app build.gradle file, add this line inside the dependencies configuration: **implementation "com.brankas.tap:direct-tap:4.3.0"** to set the SDK as a dependency for the application. This should look like:
2. In your app build.gradle file, add this line inside the dependencies configuration: **implementation "com.brankas.tap:direct-tap:4.4.0"** to set the SDK as a dependency for the application. This should look like:
````gradle
dependencies {
implementation "com.brankas.tap:direct-tap:4.3.0"
implementation "com.brankas.tap:direct-tap:4.4.0"
}
````

Expand Down

0 comments on commit 293f090

Please sign in to comment.