Skip to main content
Version: 2.0

Android

Onboarding flow can be started by calling the launchOnboardingFlow method. This method will start the onboarding flow.

HumaOnboardingKitManager.launchOnboardingFlow(context) { status: Boolean, error: String? ->
if (status) {
// Onboarding flow finished successfully
} else {
// Onboarding flow failed to finish successfully
}
}