fix #84 where account was missing, now it is selected on ecryption

This commit is contained in:
Mohamed Zenadi 2015-05-15 23:39:35 +02:00
parent a01276699a
commit a23b268d9b
4 changed files with 24 additions and 55 deletions

Binary file not shown.

View file

@ -9,8 +9,8 @@ android {
applicationId "com.zeapo.pwdstore"
minSdkVersion 15
targetSdkVersion 22
versionCode 36
versionName "1.2.0.16"
versionCode 37
versionName "1.2.0.17"
}
compileOptions {

View file

@ -389,7 +389,7 @@ public class PasswordStore extends ActionBarActivity {
switch (requestCode) {
case GitActivity.REQUEST_CLONE:
// if we get here with a RESULT_OK then it's probably OK :)
settings.edit().putBoolean("repository_initialized", true).commit();
settings.edit().putBoolean("repository_initialized", true).apply();
break;
case PgpHandler.REQUEST_CODE_ENCRYPT :
Git git = new Git(PasswordRepository.getRepository(new File("")));

View file

@ -1,11 +1,9 @@
package com.zeapo.pwdstore.crypto;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.PendingIntent;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentSender;
import android.content.SharedPreferences;
@ -52,7 +50,6 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
private OpenPgpServiceConnection mServiceConnection;
private String keyIDs = "";
private String accountName = "";
SharedPreferences settings;
private Activity activity;
ClipboardManager clipboard;
@ -85,7 +82,6 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
// some persistance
settings = PreferenceManager.getDefaultSharedPreferences(this);
String providerPackageName = settings.getString("openpgp_provider_list", "");
accountName = settings.getString("openpgp_account_name", "");
keyIDs = settings.getString("openpgp_key_ids", "");
registered = false;
@ -444,33 +440,7 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
public void encrypt(Intent data) {
accountName = settings.getString("openpgp_account_name", "");
if (accountName.isEmpty()) {
new AlertDialog.Builder(this)
.setMessage(this.getResources().getString(R.string.account_settings_dialog_text))
.setTitle(this.getResources().getString(R.string.account_settings_dialog_title))
.setPositiveButton(this.getResources().getString(R.string.dialog_ok), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
try {
Intent intent = new Intent(getApplicationContext(), UserPreference.class);
startActivity(intent);
} catch (Exception e) {
System.out.println("Exception caught :(");
e.printStackTrace();
}
}
}).setNegativeButton(this.getResources().getString(R.string.dialog_no), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
// Do nothing...
}
}).show();
} else {
data.setAction(OpenPgpApi.ACTION_ENCRYPT);
data.putExtra(OpenPgpApi.EXTRA_USER_IDS, new String[]{accountName});
data.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
String name = ((EditText) findViewById(R.id.crypto_password_file_edit)).getText().toString();
@ -500,7 +470,6 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
} catch (Exception e) {
e.printStackTrace();
}
}
}