From fbc5c349631b97eedd4236e9da620c07399225de Mon Sep 17 00:00:00 2001 From: Itai Hanski Date: Wed, 28 Aug 2024 11:56:05 +0300 Subject: [PATCH] Revert Kotlin v2 (#136) --- README.md | 2 +- build.gradle | 4 ++-- descopesdk/src/main/java/com/descope/sdk/Sdk.kt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2c11646..5738afd 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ written for Android. You can read more on the [Descope Website](https://descope. Add the following to your `build.gradle` dependencies: ```groovy -implementation 'com.descope:descope-kotlin:0.11.0' +implementation 'com.descope:descope-kotlin:0.11.1' ``` ## Quickstart diff --git a/build.gradle b/build.gradle index c6d7660..b388db7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id "io.github.gradle-nexus.publish-plugin" version "1.3.0" - id "com.android.library" version "8.5.1" apply false - id "org.jetbrains.kotlin.android" version "2.0.0" apply false + id "com.android.library" version "8.5.2" apply false + id "org.jetbrains.kotlin.android" version "1.9.24" apply false } nexusPublishing { diff --git a/descopesdk/src/main/java/com/descope/sdk/Sdk.kt b/descopesdk/src/main/java/com/descope/sdk/Sdk.kt index 4dd62e1..c4b2805 100644 --- a/descopesdk/src/main/java/com/descope/sdk/Sdk.kt +++ b/descopesdk/src/main/java/com/descope/sdk/Sdk.kt @@ -69,6 +69,6 @@ class DescopeSdk(context: Context, projectId: String, configure: DescopeConfig.( const val name = "DescopeAndroid" /** The Descope SDK version */ - const val version = "0.11.0" + const val version = "0.11.1" } }