I\'m trying to install certificates without prompting the user. I know this is not good practice, but that\'s what PM wants.
Using KeyChain.createInstallIntent(), I
Using KeyChain.createInstallIntent(), I can get Android to launch the certificate installation dialog by calling startActivity. However, when I pass the intent to sendBroadcast, nothing happens.
Few if any Intent objects that you would pass to startActivity() would work with sendBroadcast(). They are independent channels of the quasi-message bus that is the Intent system.