Send feedback
Delete stored credentials
Stay organized with collections
Save and categorize content based on your preferences.
outlined_flag
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.
Deprecated:
Smart Lock for Passwords is deprecated. To ensure the
continued security and usability of your app,
migrate to
Credential Manager today. Credential Manager supports passkey, password,
and federated identity authentication (such as Sign-in with Google),
stronger security, and a more consistent user experience.
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 .
// ...
}
}
} );
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],[]]