How To Delete User Installed Certificate Programmatically?
I had installed a certificate programmatically. I am able to uninstall it manually by going Settings -> Security -> Trusted Credentials -> User -> Choose the certificat
Solution 1:
Looks like that implementation of the KeyStoreSpi interface just doesn't support removal:
@OverridepublicvoidengineDeleteEntry(String alias) {
thrownewUnsupportedOperationException();
}
Post a Comment for "How To Delete User Installed Certificate Programmatically?"