From 44ef82219b940e271d0f4bee114e8cfcaee35d0f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 17 Nov 2017 09:52:14 -0500 Subject: [PATCH] flags --- src/Android/Autofill/AutofillHelpers.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Android/Autofill/AutofillHelpers.cs b/src/Android/Autofill/AutofillHelpers.cs index 8281452a9..79bad07bb 100644 --- a/src/Android/Autofill/AutofillHelpers.cs +++ b/src/Android/Autofill/AutofillHelpers.cs @@ -66,6 +66,7 @@ namespace Bit.Android.Autofill var intent = new Intent(context, typeof(MainActivity)); intent.PutExtra("uri", uri); intent.PutExtra("autofillFramework", true); + //intent.SetFlags(ActivityFlags.NewTask | ActivityFlags.ClearTop); var pendingIntent = PendingIntent.GetActivity(context, 0, intent, PendingIntentFlags.CancelCurrent); responseBuilder.SetAuthentication(fields.AutofillIds.ToArray(), pendingIntent.IntentSender, view); return responseBuilder.Build();