diff --git a/app/build.gradle b/app/build.gradle index 54c1332..ffd71b6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 + minSdk 26 + targetSdk 35 versionCode 1 versionName "1.0" @@ -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' } \ No newline at end of file diff --git a/tss-client-android/build.gradle b/tss-client-android/build.gradle index 6ef6c53..8164e99 100644 --- a/tss-client-android/build.gradle +++ b/tss-client-android/build.gradle @@ -5,11 +5,11 @@ plugins { android { namespace 'com.web3auth.tss_client_android' - compileSdk 33 + compileSdk 34 defaultConfig { - minSdk 24 - targetSdk 33 + minSdk 26 + targetSdk 34 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" externalNativeBuild { @@ -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) {