mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-19 10:07:02 +02:00
Search for android.webkit.webview
This commit is contained in:
parent
7a9ed6897d
commit
4653fa2c10
|
|
@ -151,7 +151,8 @@ public class AutofillService extends AccessibilityService {
|
|||
continue;
|
||||
}
|
||||
// this is not likely to always work
|
||||
if (u.getContentDescription() != null && u.getContentDescription().equals("Web View")) {
|
||||
if (u.getContentDescription() != null && u.getContentDescription().equals("Web View")
|
||||
|| u.getClassName() != null && u.getClassName().equals("android.webkit.WebView")) {
|
||||
return true;
|
||||
}
|
||||
if (searchWebView(u)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue