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 dce2903 commit 0a8bf77
Show file tree
Hide file tree
Showing 4 changed files with 12 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 @@ -75,7 +75,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 @@ -531,7 +531,8 @@ class MainActivity : FragmentActivity() {
CoreListener<String?> {
override fun onResult(data: String?, error: CoreError?) {
error?.let {
Toast.makeText(this@MainActivity, it.errorMessage, Toast.LENGTH_LONG).show()
Toast.makeText(this@MainActivity, "${it.errorCode.getCode()} " +
"- ${it.errorCode.getErrorMessage()}", Toast.LENGTH_LONG).show()
}
}

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 0a8bf77

Please sign in to comment.