Skip to content

Commit

Permalink
Updated Direct Tap Version to 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
torresejay102 committed Apr 25, 2024
1 parent 0a8bf77 commit ac23998
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ dependencies {

// gRPC
implementation 'com.google.protobuf:protobuf-javalite:3.21.7'
implementation 'io.grpc:grpc-okhttp:1.51.1' // CURRENT_GRPC_VERSION
implementation('io.grpc:grpc-protobuf-lite:1.51.1') {
implementation 'io.grpc:grpc-okhttp:1.63.0' // CURRENT_GRPC_VERSION
implementation('io.grpc:grpc-protobuf-lite:1.63.0') {
}
implementation 'io.grpc:grpc-stub:1.51.1' // CURRENT_GRPC_VERSION
implementation 'io.grpc:grpc-stub:1.63.0' // CURRENT_GRPC_VERSION
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'

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

implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2'
implementation 'com.github.bumptech.glide:glide:4.12.0'
Expand Down
14 changes: 14 additions & 0 deletions sdk docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## 4.5.0 - 2024-04-17

### Fixed

- Error Code having extra text (e.g. INTERNAL: DIRXXX1234) in some cases

### Changed

- **gRPC** version from **1.51.1** to **1.63.0**

### Added

- SDK logs pertaining to WebView activity and Network Connection

## 4.4.0 - 2024-03-06

### Changed
Expand Down
12 changes: 6 additions & 6 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.4.0
*Version:* 4.5.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.4.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.5.0"** to set the SDK as a dependency for the application. This should look like:
````gradle
dependencies {
implementation "com.brankas.tap:direct-tap:4.4.0"
implementation "com.brankas.tap:direct-tap:4.5.0"
}
````

Expand All @@ -83,11 +83,11 @@ This set of instructions assumes that the IDE being used is Android Studio
```gradle
dependencies {
implementation 'com.google.protobuf:protobuf-javalite:3.20.0'
implementation 'io.grpc:grpc-okhttp:1.51.1'
implementation('io.grpc:grpc-protobuf-lite:1.51.1') {
implementation 'io.grpc:grpc-okhttp:1.63.0'
implementation('io.grpc:grpc-protobuf-lite:1.63.0') {
exclude group: 'com.google.protobuf'
}
implementation 'io.grpc:grpc-stub:1.51.1'
implementation 'io.grpc:grpc-stub:1.63.0'
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
//implementation "org.jetbrains.kotlinx:kotlinx-coroutines-rx2:$kotlin_coroutines_version"
Expand Down

0 comments on commit ac23998

Please sign in to comment.