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();