diff options
Diffstat (limited to 'OpenPGP-Keychain-API/example-app/src')
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/IntentActivity.java | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/IntentActivity.java b/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/IntentActivity.java index fdcabaf7c..e8aa2a2e7 100644 --- a/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/IntentActivity.java +++ b/OpenPGP-Keychain-API/example-app/src/main/java/org/sufficientlysecure/keychain/demo/IntentActivity.java @@ -112,11 +112,11 @@ public class IntentActivity extends PreferenceActivity {                      byte[] pubkey = null;                      try {                          pubkey = TEST_PUBKEY.getBytes("UTF-8"); +                        intent.putExtra(OpenKeychainIntents.IMPORT_KEY_EXTRA_KEY_BYTES, pubkey); +                        startActivity(intent);                      } catch (UnsupportedEncodingException e) { -                        e.printStackTrace(); +                        Log.e(Constants.TAG, "UnsupportedEncodingException", e);                      } -                    intent.putExtra(OpenKeychainIntents.IMPORT_KEY_EXTRA_KEY_BYTES, pubkey); -                    startActivity(intent);                  } catch (ActivityNotFoundException e) {                      Toast.makeText(IntentActivity.this, "Activity not found!", Toast.LENGTH_LONG).show();                  } | 
