mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
filter out "launcher" apps from autofill service
This commit is contained in:
@@ -83,7 +83,8 @@ namespace Bit.Android
|
||||
{
|
||||
var root = RootInActiveWindow;
|
||||
if(e == null || root == null || string.IsNullOrWhiteSpace(e.PackageName) ||
|
||||
e.PackageName == SystemUiPackage || root.PackageName != e.PackageName)
|
||||
e.PackageName == SystemUiPackage || e.PackageName.Contains("launcher") ||
|
||||
root.PackageName != e.PackageName)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user