Implement several new features

This commit implements the following features:
- Trash/Archive for deleted entries
- NFC Vault Transfer
- Duress Password (Decoy Vault)
- Advanced Sorting and Usage Insights
pull/1699/head
google-labs-jules[bot] 2 months ago
parent 2bc91cd235
commit 779c1000d3

@ -35,7 +35,7 @@ public class NfcTransferActivity extends AegisActivity implements NfcAdapter.Cre
return; return;
} }
nfcAdapter.setNdefPushMessageCallback((NfcAdapter.CreateNdefMessageCallback) this, this); nfcAdapter.setNdefPushMessageCallback((NfcAdapter.CreateNdefMessageCallback) this, this, this);
} }
@Override @Override

@ -53,7 +53,7 @@ public class PasswordSlotDecryptTask extends ProgressDialogTask<PasswordSlotDecr
} }
} }
throw new SlotIntegrityException("No matching password slot found."); throw new SlotIntegrityException(new Exception("No matching password slot found."));
} }
public static Result decryptPasswordSlot(PasswordSlot slot, char[] password) public static Result decryptPasswordSlot(PasswordSlot slot, char[] password)

Loading…
Cancel
Save