diff --git a/README.md b/README.md index 2c116468..5738afd9 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 c6d76601..b388db7e 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 4dd62e17..c4b2805b 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" } }