diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 388f2d6e9..b5fd2a330 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -20,6 +20,7 @@ namespace Bit.Android private NotificationChannel _notificationChannel; private const int AutoFillNotificationId = 34573; + private const string SystemUiPackage = "com.android.systemui"; private const string BitwardenPackage = "com.x8bit.bitwarden"; private const string BitwardenWebsite = "bitwarden.com"; private const string BitwardenAccessibilityTag = "bw_access"; @@ -69,7 +70,7 @@ namespace Bit.Android "com.google.android.googlequicksearchbox", "com.google.android.apps.nexuslauncher", "com.google.android.launcher", - "com.android.systemui" + SystemUiPackage }; private readonly IAppSettingsService _appSettings;