1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

Accessibility service WIP

This commit is contained in:
Kyle Spearrin
2017-01-30 19:26:39 -05:00
parent 0beb07c87e
commit 36c6c5a35e
12 changed files with 310 additions and 150 deletions

View File

@@ -89,9 +89,16 @@ namespace Bit.Android
private void ReturnCredentials(VaultListPageModel.Login login)
{
Intent data = new Intent();
data.PutExtra("uri", login.Uri.Value);
data.PutExtra("username", login.Username);
data.PutExtra("password", login.Password.Value);
if(login == null)
{
data.PutExtra("canceled", "true");
}
else
{
data.PutExtra("uri", login.Uri.Value);
data.PutExtra("username", login.Username);
data.PutExtra("password", login.Password.Value);
}
if(Parent == null)
{