diff --git a/README.md b/README.md index 86360e0..75593ab 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ import Foundation ```graddle buildscript { ext { - gigyaCoreSdkVersion = "core-v5.1.5" + gigyaCoreSdkVersion = "7.1.1" } } ``` @@ -92,7 +92,7 @@ You can now initialize the SDK with your [**`apiKey`**](https://help.sap.com/doc [**`lang`**](https://help.sap.com/docs/SAP_CUSTOMER_DATA_CLOUD/8b8d6fffe113457094a17701f63e3d6a/4141d83470b21014bbc5a10ce4041860.html?locale=en-US#language-support), **`storage`** solution & desired **storageKey**. -❗ **Please make sure your storage library exposes `getItem()` and `setItem()` functions.** +❗ **Please make sure your storage library exposes `getItem()` and `setItem()` functions or provided them yourself.** diff --git a/android/build.gradle b/android/build.gradle index dc2979c..73b7a20 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -128,6 +128,6 @@ dependencies { // noinspection GradleDynamicVersion api 'com.facebook.react:react-native:+' implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}" - implementation "com.github.SAP.gigya-android-sdk:gigya-android-sdk-core:${gigya_core_sdk_version}" + implementation "com.sap.oss.gigya-android-sdk:sdk-core:${gigya_core_sdk_version}" implementation 'com.google.code.gson:gson:2.9.0' } diff --git a/android/gradle.properties b/android/gradle.properties index 2ee01be..d7c5d17 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ GigyaSdk_kotlinVersion=1.3.50 -GigyaSdk_gigyaCoreSdkVersion="core-v5.0.1" +GigyaSdk_gigyaCoreSdkVersion="core-v7.1.1" GigyaSdk_compileSdkVersion=29 GigyaSdk_buildToolsVersion=29.0.2 GigyaSdk_targetSdkVersion=29 diff --git a/example/android/build.gradle b/example/android/build.gradle index d5ed89a..d827078 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -3,7 +3,7 @@ buildscript { ext { buildToolsVersion = "30.0.2" - gigyaCoreSdkVersion = "core-v5.1.5" + gigyaCoreSdkVersion = "core-v7.1.1" minSdkVersion = 21 compileSdkVersion = 30 targetSdkVersion = 30