From 856f40f796ec6cbba7ee477c3d54aa40333d5026 Mon Sep 17 00:00:00 2001 From: Nicklas Lundin Date: Thu, 24 Aug 2023 17:11:17 +0200 Subject: [PATCH] chore: update to use openfeature sdk dependency (#56) Signed-off-by: Nicklas Lundin --- Provider/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Provider/build.gradle.kts b/Provider/build.gradle.kts index d8f2512a..476586c0 100644 --- a/Provider/build.gradle.kts +++ b/Provider/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } object Versions { - const val openFeatureSDK = "v0.1.3" + const val openFeatureSDK = "v0.0.2" const val okHttp = "4.10.0" const val kotlinxSerialization = "1.5.1" const val coroutines = "1.7.1" @@ -48,7 +48,7 @@ android { } dependencies { - api("com.github.spotify:openfeature-kotlin-sdk:${Versions.openFeatureSDK}") + api("com.github.open-feature:kotlin-sdk:${Versions.openFeatureSDK}") implementation("com.squareup.okhttp3:okhttp:${Versions.okHttp}") implementation( "org.jetbrains.kotlinx:kotlinx-serialization-json:${Versions.kotlinxSerialization}"