reintroduce AccessibilityService from 9bc8d6bb6d (cf. #65)

This commit is contained in:
Josia Pietsch 2024-11-08 04:07:33 +01:00
parent cd600af09f
commit 9848785b3e
Signed by: jrpie
GPG key ID: E70B571D66986A2D
5 changed files with 113 additions and 6 deletions

View file

@ -65,5 +65,17 @@
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<service android:name=".actions.LauncherAccessibilityService"
android:exported="true"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:label="@string/accessibility_service_name">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/accessibility_service_config" />
</service>
</application>
</manifest>