mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
filter out "launcher" apps from autofill service
This commit is contained in:
parent
e4c96dc6d8
commit
96588089ef
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,8 @@ namespace Bit.Android
|
||||||
{
|
{
|
||||||
var root = RootInActiveWindow;
|
var root = RootInActiveWindow;
|
||||||
if(e == null || root == null || string.IsNullOrWhiteSpace(e.PackageName) ||
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue