1
0
Fork 0
mirror of https://github.com/jrpie/Launcher.git synced 2025-05-06 18:44:19 +02:00

action: lock screen

This commit is contained in:
yzqzss 2024-10-26 22:32:15 +08:00
parent 6cabcf51bd
commit 9bc8d6bb6d
6 changed files with 110 additions and 5 deletions

View file

@ -52,6 +52,17 @@
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<service android:name=".actions.LauncherAccessibilityService"
android:exported="true"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:label="@string/app_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>