diff options
author | Javier <dev.git@javispedro.com> | 2020-02-16 23:52:36 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2020-02-16 23:52:36 +0100 |
commit | 2c104cf650052b544edc384f55798aacb44efbeb (patch) | |
tree | fbe819a03c98a45616162aaaf0a5f09407149d0f /app/src/main/res/xml | |
parent | 139a04da8b0810d12a8780dd6c3ae2f11ca9268f (diff) | |
download | vndroid-2c104cf650052b544edc384f55798aacb44efbeb.tar.gz vndroid-2c104cf650052b544edc384f55798aacb44efbeb.zip |
fix non-sticky service
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/controlservice.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/res/xml/controlservice.xml b/app/src/main/res/xml/controlservice.xml index 85078a7..ef6071e 100644 --- a/app/src/main/res/xml/controlservice.xml +++ b/app/src/main/res/xml/controlservice.xml @@ -1,6 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <accessibility-service xmlns:android="http://schemas.android.com/apk/res/android" + android:summary="@string/control_service_summary" + android:description="@string/control_service_description" android:canRetrieveWindowContent="true" android:canPerformGestures="true" - android:summary="@string/control_service_summary" - android:description="@string/control_service_description"/>
\ No newline at end of file + android:accessibilityFlags="flagDefault|flagRetrieveInteractiveWindows" + />
\ No newline at end of file |