diff options
author | Hung-ying Tyan <tyanh@google.com> | 2010-10-07 17:27:28 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-10-07 17:27:28 -0700 |
commit | 26cb01e880af5f23a58e4336facd30fa7d52581e (patch) | |
tree | 35979c0a54d53d0f533f135e31c9a81ab6249e70 | |
parent | 3ecceb5b94233320ed88825759d6118fed7add2c (diff) | |
parent | c5e630a004d144ba1d4cd1d37dd98eb70a7ec1d8 (diff) | |
download | frameworks_base-26cb01e880af5f23a58e4336facd30fa7d52581e.zip frameworks_base-26cb01e880af5f23a58e4336facd30fa7d52581e.tar.gz frameworks_base-26cb01e880af5f23a58e4336facd30fa7d52581e.tar.bz2 |
Merge "Use explicit intent for installing credentials." into gingerbread
-rw-r--r-- | keystore/java/android/security/Credentials.java | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/keystore/java/android/security/Credentials.java b/keystore/java/android/security/Credentials.java index 43042c0b..ef19579 100644 --- a/keystore/java/android/security/Credentials.java +++ b/keystore/java/android/security/Credentials.java @@ -80,9 +80,16 @@ public class Credentials { } } + private Intent createInstallIntent() { + Intent intent = new Intent(INSTALL_ACTION); + intent.setClassName("com.android.certinstaller", + "com.android.certinstaller.CertInstallerMain"); + return intent; + } + public void install(Context context, KeyPair pair) { try { - Intent intent = new Intent(INSTALL_ACTION); + Intent intent = createInstallIntent(); intent.putExtra(PRIVATE_KEY, pair.getPrivate().getEncoded()); intent.putExtra(PUBLIC_KEY, pair.getPublic().getEncoded()); context.startActivity(intent); @@ -93,7 +100,7 @@ public class Credentials { public void install(Context context, String type, byte[] value) { try { - Intent intent = new Intent(INSTALL_ACTION); + Intent intent = createInstallIntent(); intent.putExtra(type, value); context.startActivity(intent); } catch (ActivityNotFoundException e) { @@ -103,7 +110,7 @@ public class Credentials { public void installFromSdCard(Context context) { try { - context.startActivity(new Intent(INSTALL_ACTION)); + context.startActivity(createInstallIntent()); } catch (ActivityNotFoundException e) { Log.w(LOGTAG, e.toString()); } |