1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

added back FromAutofillService functionality

This commit is contained in:
Kyle Spearrin
2017-02-03 23:21:40 -05:00
parent 31b2eeb293
commit 46bb8d2cb5
3 changed files with 19 additions and 3 deletions

View File

@@ -98,6 +98,7 @@ namespace Bit.Android
private void ReturnCredentials(VaultListPageModel.Login login)
{
App.App.FromAutofillService = true;
Intent data = new Intent();
if(login == null)
{
@@ -154,8 +155,12 @@ namespace Bit.Android
protected override void OnResume()
{
Console.WriteLine("A OnResume");
base.OnResume();
Console.WriteLine("A OnResume");
// workaround for app compat bug
// ref https://bugzilla.xamarin.com/show_bug.cgi?id=36907
Task.Delay(10).Wait();
}
public void RateApp()