Created
September 19, 2025 02:54
-
-
Save akshat12/cd253eb20c6f753c95900a7b6401d541 to your computer and use it in GitHub Desktop.
AndroidManifest.xml for MyAccessiblityService
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <application | |
| ... > | |
| ... | |
| <service | |
| android:name=".MyAccessibilityService" | |
| android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" | |
| android:exported="false"> | |
| <intent-filter> | |
| <action android:name="android.accessibilityservice.AccessibilityService" /> | |
| </intent-filter> | |
| <meta-data | |
| android:name="android.accessibilityservice" | |
| android:resource="@xml/accessibility_service_config" /> | |
| </service> | |
| </application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment