From 4efa2355218025935da4550154d83187afb5d862 Mon Sep 17 00:00:00 2001 From: Sergejs Luhmirins Date: Wed, 3 Sep 2025 14:34:52 +0300 Subject: [PATCH] Downgrade kotlin version to allow integration with SID --- README.md | 4 ++-- build.gradle | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c309e3f..d3121b4 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ **Installation** ``` -implementation 'com.simprints:libsimprints:2025.2.0' +implementation 'com.simprints:libsimprints:2025.2.1' ``` [Documentation](https://simprints.gitbook.io/docs/development/simprints-for-developers/integrating-with-simprints) @@ -20,5 +20,5 @@ implementation 'com.simprints:libsimprints:2025.2.0' maven("https://oss.sonatype.org/content/repositories/snapshots") // In app level gradle file -implementation 'com.simprints:libsimprints:2025.2.0-SNAPSHOT' +implementation 'com.simprints:libsimprints:2025.2.1-SNAPSHOT' ``` diff --git a/build.gradle b/build.gradle index 79122ae..a2aa339 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { } dependencies { classpath "com.android.tools.build:gradle:8.12.2" - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20" classpath "com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.34.0" } } @@ -21,9 +21,9 @@ repositories { mavenCentral() } -project.version = "2025.2.0" +project.version = "2025.2.1" ext { - VERSION_CODE = 202502000 + VERSION_CODE = 202502001 } android { @@ -82,7 +82,7 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:2.2.10" + implementation "org.jetbrains.kotlin:kotlin-stdlib:2.0.20" implementation 'androidx.activity:activity-ktx:1.10.1' testImplementation "junit:junit:4.13.2"