Android SDK integration

According to the documentation, the native Android SDK for Gradle should be added with:

Code

implementation 'com.github.Koredotcom:android-kore-sdk:0.0.5'

However, I was unable to download version 0.0.5. It only works when I change the version to 10.14.2.
Is the documentation outdated, or am I missing something?

My current setup is:

Code

koreSDK = "10.14.2"
android-kore-sdk = { module = "com.github.Koredotcom:android-kore-sdk", version.ref = "koreSDK"}
implementation(libs.android.kore.sdk)

To initialize the SDK, the documentation says to use:

SDKConfig.initialize(botId, botName, clientId, clientSecret, identity, jwtToken, serverUrl, brandingUrl, jwtServerUrl);

I know I can get botId, botName, clientId, and clientSecret from platform.kore.ai > Digital > Channel.
But I’m not sure where to find the other values (identity, jwtToken, serverUrl, brandingUrl, jwtServerUrl).
Do you know where I can get these?

Here’s the Android documentation I referred to: