Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
update gson, json and socket.io-client
  • Loading branch information
metalurgical committed Dec 2, 2024
1 parent db09c07 commit 2c35e33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {

android {
namespace 'com.web3auth.tss_client_android_example'
compileSdk 33
compileSdk 35

defaultConfig {
applicationId "com.web3auth.tss_client_android_example"
minSdk 24
targetSdk 33
targetSdk 35
versionCode 1
versionName "1.0"

Expand All @@ -35,6 +35,6 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}
14 changes: 7 additions & 7 deletions tss-client-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {

android {
namespace 'com.web3auth.tss_client_android'
compileSdk 33
compileSdk 34

defaultConfig {
minSdk 24
targetSdk 33
targetSdk 34
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
externalNativeBuild {
Expand Down Expand Up @@ -43,17 +43,17 @@ dependencies {
implementation 'com.google.android.material:material:1.9.0'

implementation 'org.web3j:core:4.8.8-android'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'org.json:json:20220924'
implementation('io.socket:socket.io-client:2.1.0') {
implementation 'org.json:json:20240303'
implementation('io.socket:socket.io-client:2.1.1') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}

task javadoc(type: Javadoc) {
Expand Down

0 comments on commit 2c35e33

Please sign in to comment.