Page Summary
-
Smart Lock for Passwords is deprecated; migrate to Credential Manager for improved security and user experience.
-
Delete credentials from Smart Lock when sign-in fails or the user completes account deletion.
-
Use
CredentialsClient.delete()to delete credentials from Smart Lock.
Delete credentials from Smart Lock when either of the following circumstances occur:
- Signing in with the credentials fails because the account no longer exists or the password is incorrect.
- The user completes the app's account deletion flow.
To delete credentials, call CredentialsClient.delete():
mCredentialsClient.delete(credential).addOnCompleteListener(
new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
// Credential deletion succeeded.
// ...
}
}
});