From 160b1e2710eb4046bd7467acdba00780e3bf4cc7 Mon Sep 17 00:00:00 2001 From: ivankamkin <109517020+ivankamkin@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:04:33 +0500 Subject: [PATCH] Release 24.10 (#43) * Version of SDK updated * Update kotlin version * Removed unused property --------- Co-authored-by: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> --- app/build.gradle | 2 +- .../java/com/aspose/barcode/cloud/demo_app/MainActivity.kt | 1 - build.gradle | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 645549a..39805e1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -41,7 +41,7 @@ implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'com.aspose:aspose-barcode-cloud:24.9.0' + implementation 'com.aspose:aspose-barcode-cloud:24.10.0' implementation 'com.google.android.material:material:1.8.0' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' diff --git a/app/src/main/java/com/aspose/barcode/cloud/demo_app/MainActivity.kt b/app/src/main/java/com/aspose/barcode/cloud/demo_app/MainActivity.kt index fc2bf9b..4b983fe 100644 --- a/app/src/main/java/com/aspose/barcode/cloud/demo_app/MainActivity.kt +++ b/app/src/main/java/com/aspose/barcode/cloud/demo_app/MainActivity.kt @@ -108,7 +108,6 @@ class MainActivity : AppCompatActivity() { "Client Secret from https://dashboard.aspose.cloud/applications" ) - client.writeTimeout = 60_000 client.readTimeout = 60_000 api = BarcodeApi(client) diff --git a/build.gradle b/build.gradle index c0300a3..1503f5d 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,6 @@ plugins { id 'com.android.application' version '8.3.2' apply false id 'com.android.library' version '8.3.2' apply false - id 'org.jetbrains.kotlin.android' version '1.7.21' apply false + id 'org.jetbrains.kotlin.android' version '1.9.0' apply false } -ext.kotlin_version = '1.7.21' +ext.kotlin_version = '1.9.0'