mirror of
https://github.com/jrpie/Launcher.git
synced 2025-06-09 02:40:01 +02:00
reintroduce AccessibilityService from 9bc8d6bb6d
(cf. #65)
This commit is contained in:
parent
cd600af09f
commit
9848785b3e
5 changed files with 113 additions and 6 deletions
19
app/src/main/res/xml/accessibility_service_config.xml
Normal file
19
app/src/main/res/xml/accessibility_service_config.xml
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
The accessibility service is only used for locking the screen.
|
||||
|
||||
* android:accessibilityEventTypes is unspecified intentionally, as we don't want to listen to any
|
||||
events.
|
||||
* android:packageNames is set to an empty list, as we don't want to interact or read data from
|
||||
any app.
|
||||
-->
|
||||
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:accessibilityFlags="flagDefault"
|
||||
android:canRequestEnhancedWebAccessibility="false"
|
||||
android:canRequestFilterKeyEvents="false"
|
||||
android:canRequestTouchExplorationMode="false"
|
||||
android:canRetrieveWindowContent="false"
|
||||
android:description="@string/accessibility_service_description"
|
||||
android:packageNames=""
|
||||
android:settingsActivity="de.jrpie.android.launcher.ui.settings.SettingsActivity" />
|
Loading…
Add table
Add a link
Reference in a new issue