android: add accessiblity service for camera control

This commit is contained in:
Kavish Devar
2025-09-30 23:53:29 +05:30
parent 8b49440d6b
commit 342745ee2e
13 changed files with 473 additions and 338 deletions

View File

@@ -117,7 +117,17 @@
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<service
android:name=".services.AppListenerService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:exported="true">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/app_listener_service_config" />
</service>
<receiver
android:name=".receivers.BootReceiver"
android:enabled="true"