diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-07-07 17:02:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 20:32:57 +0530 |
commit | d192ab2d9a6f45fb23e3d3f709c144ce1be3a850 (patch) | |
tree | 7e946de1f3e15db63be9c184d74b49d610c49d09 /app/src/main/AndroidManifest.xml | |
parent | 5d170249cdd0050349f40d3a5852a8ba996663bc (diff) |
Work around Chrome Autofill issue (#921)
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 40bcb481..1a49b017 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -99,6 +99,19 @@ android:name="android.accessibilityservice" android:resource="@xml/autofill_config" /> </service> + + <service + android:name=".autofill.oreo.ChromeCompatFix" + android:enabled="@bool/enable_chrome_compat_fix" + android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> + <intent-filter> + <action android:name="android.accessibilityservice.AccessibilityService" /> + </intent-filter> + <meta-data + android:name="android.accessibilityservice" + android:resource="@xml/oreo_autofill_chrome_compat_fix" /> + </service> + <service android:name=".ClipboardService" android:process=":clipboard_service_process" /> |