1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Adjust LaunchMode of WebAuth & Autofill helper activities

This commit is contained in:
mpbw2
2023-10-13 13:27:59 -04:00
parent bc2eb212a6
commit f9e9143b51
2 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,8 @@ namespace Bit.Droid.Autofill
{
[Activity(
NoHistory = true,
LaunchMode = LaunchMode.SingleTop)]
LaunchMode = LaunchMode.SingleInstance,
Exported = false)]
public class AutofillExternalSelectionActivity : Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle bundle)

View File

@@ -7,7 +7,7 @@ namespace Bit.Droid
{
[Activity(
NoHistory = true,
LaunchMode = LaunchMode.SingleTop,
LaunchMode = LaunchMode.SingleInstance,
Exported = true)]
[IntentFilter(new[] { Android.Content.Intent.ActionView },
Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable },