You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
The method for Android
public override void Delete (Account account, string serviceId)
{
var alias = MakeAlias (account, serviceId);
ks.DeleteEntry (alias);
}
The method deletes the account from KeyStore instance but not from file ("Xamarin.Social.Accounts" - name of file where account are stored).
So if you create a new instance of KeyStore all accounts appear again.
Many services like TwitterService create new instance of AccountStore.
My suggestion is to delete the account record from "Xamarin.Social.Accounts" file also.
The text was updated successfully, but these errors were encountered:
The method for Android
public override void Delete (Account account, string serviceId)
{
var alias = MakeAlias (account, serviceId);
ks.DeleteEntry (alias);
}
The method deletes the account from KeyStore instance but not from file ("Xamarin.Social.Accounts" - name of file where account are stored).
So if you create a new instance of KeyStore all accounts appear again.
Many services like TwitterService create new instance of AccountStore.
My suggestion is to delete the account record from "Xamarin.Social.Accounts" file also.
The text was updated successfully, but these errors were encountered: