Using Unlock With Tap
This feature enables your app to perform unlock operations using mobile credentials.
1. Retrieve Mobile Credentials
import SeamSDK
import Combine
// Access credentials
let credentials = Seam.shared.credentials
// Observe updates with Combine
let credentialsSubscription = Seam.shared.$credentials
.sink { creds in
// Update UI with new credentials array.
}import co.seam.core.api.SeamCredential
import co.seam.core.api.SeamSDK
// Collect credentials
SeamSDK.getInstance().credentials.collect { credentials ->
// Update UI with new credentials array.
}2. Monitor Credential Errors
3. Perform Unlock Operation
4. Handle Unlock Events
5. Cancel the Unlock Operation
Last updated
Was this helpful?

