Implemented issue #53 - Change intent actions from extra ints to intent actions

This commit is contained in:
bcbarnes-gmx
2013-07-23 07:49:34 -05:00
parent f608fc123f
commit 3d6ae3ee83
11 changed files with 48 additions and 84 deletions

View File

@@ -104,7 +104,7 @@ public class KeyServerUploadActivity extends SherlockFragmentActivity {
// Send all information needed to service to upload key in other thread
Intent intent = new Intent(this, KeychainIntentService.class);
intent.putExtra(KeychainIntentService.EXTRA_ACTION, KeychainIntentService.ACTION_UPLOAD_KEYRING);
intent.setAction(KeychainIntentService.ACTION_UPLOAD_KEYRING);
// fill values for this action
Bundle data = new Bundle();