Android HYPR Passwordless Setup
HYPR SDK for Android v2
Setup your application for HYPR Passwordless (Computer Unlock).
note
This article assumes you've completed Android General Setup.
HYPR Initialization
When the app has started, initialize the HYPR SDK for Android v2 during onCreate()
of your first activity.
YourActivity.kt
fun initializeHYPR() {
HyprApp.initializeApp(context, object : HyprInit.InitTrustDataCallback {
override fun onInstallComplete() {
// Success!
}
override fun onInstallError(errorString: String, p1: Throwable?) {
// Fail
}
})
}
...