Getting Started
Initialise the SDK
import com.kape.sdk.KapeClient
import com.kape.sdk.KapeConfiguration
class MyApplication : Application() {
val kape: KapeClient by lazy {
KapeClient(
context = this,
configuration = KapeConfiguration(
clientId = "your-client-id",
environment = KapeEnvironment.PRODUCTION
)
)
}
}Authenticate
Fetch Server Locations
Observe Authentication State
Next Steps
Last updated