Send ACTION_KEYCHAIN_CHANGED when installing a cert

Change-Id: I846162511b5d75d937d4c543d47d535894e1d688
Fixes: 36492950
Test: Verified that installing a cert via UI triggers the broadcast
This commit is contained in:
Chad Brubaker
2017-04-10 10:26:46 -07:00
parent 4c4f2a7c4c
commit 68baa35adb

View File

@@ -295,6 +295,10 @@ public final class CredentialStorage extends Activity {
}
}
// Send the broadcast.
Intent broadcast = new Intent(KeyChain.ACTION_KEYCHAIN_CHANGED);
sendBroadcast(broadcast);
setResult(RESULT_OK);
}