Skip to content

Commit 8af1b75

Browse files
committed
Updated Statement Tap Version to 4.3.0
1 parent f6dd2d2 commit 8af1b75

File tree

3 files changed

+25
-11
lines changed

3 files changed

+25
-11
lines changed

app/build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,16 @@ dependencies {
7171

7272
// gRPC
7373
implementation 'com.google.protobuf:protobuf-javalite:3.21.7'
74-
implementation 'io.grpc:grpc-okhttp:1.51.1' // CURRENT_GRPC_VERSION
75-
implementation('io.grpc:grpc-protobuf-lite:1.51.1') {
74+
implementation 'io.grpc:grpc-okhttp:1.63.0' // CURRENT_GRPC_VERSION
75+
implementation('io.grpc:grpc-protobuf-lite:1.63.0') {
7676
exclude group: 'com.google.protobuf'
7777
}
78-
implementation 'io.grpc:grpc-stub:1.51.1' // CURRENT_GRPC_VERSION
78+
implementation 'io.grpc:grpc-stub:1.63.0' // CURRENT_GRPC_VERSION
7979
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
8080
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
8181

8282
implementation "androidx.security:security-crypto:1.1.0-alpha06"
83-
implementation "com.brankas.tap:statement-tap:4.2.1"
83+
implementation "com.brankas.tap:statement-tap:4.3.0"
8484

8585
//only for nv-barcode-vision
8686
implementation ("com.google.android.gms:play-services-vision:20.1.3"){
@@ -92,4 +92,5 @@ dependencies {
9292
implementation 'com.github.bumptech.glide:glide:3.6.0'
9393
implementation 'com.jakewharton.rxbinding4:rxbinding:4.0.0'
9494
implementation 'io.reactivex.rxjava3:rxkotlin:3.0.1'
95+
implementation 'com.airbnb.android:lottie:4.2.2'
9596
}

sdk docs/changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

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

5+
## 4.3.0 - 2024-05-20
6+
7+
### Added
8+
9+
- more Bank Codes as source and destination
10+
- SDK logs pertaining to WebView activity and Network Connection
11+
- **Lottie Animation Dependency** (*implementation "com.airbnb.android:lottie:4.2.2"*)
12+
13+
### Changed
14+
15+
- **gRPC** version from **1.51.1** to **1.63.0**
16+
517
## 4.2.1 - 2024-01-24
618

719
### Fixed

sdk docs/readme.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Statement Tap SDK for Android
22
***
3-
*Version:* 4.2.1
3+
*Version:* 4.3.0
44
***
55

66

@@ -69,11 +69,11 @@ This set of instructions assumes that the IDE being used is Android Studio
6969
```
7070
**NOTE: You can use any GitHub Account in filling up the credentials**
7171

72-
2. In your app build.gradle file, add this line inside the dependencies configuration: **implementation "com.brankas.tap:statement-tap:4.2.1"** to set the SDK as a dependency for the application. This should look like:
72+
2. In your app build.gradle file, add this line inside the dependencies configuration: **implementation "com.brankas.tap:statement-tap:4.3.0"** to set the SDK as a dependency for the application. This should look like:
7373

7474
```gradle
7575
dependencies {
76-
implementation "com.brankas.tap:statement-tap:4.2.1"
76+
implementation "com.brankas.tap:statement-tap:4.3.0"
7777
}
7878

7979

@@ -82,15 +82,16 @@ This set of instructions assumes that the IDE being used is Android Studio
8282
```gradle
8383
dependencies {
8484
implementation 'com.google.protobuf:protobuf-javalite:3.20.0'
85-
implementation 'io.grpc:grpc-okhttp:1.51.1'
86-
implementation('io.grpc:grpc-protobuf-lite:1.51.1') {
85+
implementation 'io.grpc:grpc-okhttp:1.63.0'
86+
implementation('io.grpc:grpc-protobuf-lite:1.63.0') {
8787
exclude group: 'com.google.protobuf'
8888
}
89-
implementation 'io.grpc:grpc-stub:1.51.1'
89+
implementation 'io.grpc:grpc-stub:1.63.0'
9090
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
9191
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
9292
//implementation "org.jetbrains.kotlinx:kotlinx-coroutines-rx2:$kotlin_coroutines_version"
9393
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2'
94+
implementation 'com.airbnb.android:lottie:4.2.2'
9495
}
9596

9697
compileOptions {
@@ -211,7 +212,7 @@ StatementTapSDK.checkout(this, request.build(), object: CoreListener<String>() {
211212
println("DATA: "+data)
212213
}
213214

214-
}, 3000, false, true);3.1.23.1.2
215+
}, 3000, false, true);
215216

216217
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
217218
super.onActivityResult(requestCode, resultCode, data)

0 commit comments

Comments
 (0)