Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2023 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 17 | xmlns:tools="http://schemas.android.com/tools" |
| 18 | package="com.android.systemui.accessibility.accessibilitymenu"> |
Riley Jones | 246a9a0 | 2023-01-23 15:35:08 +0000 | [diff] [blame] | 19 | |
| 20 | <uses-permission android:name="android.permission.CONTROL_DISPLAY_BRIGHTNESS"/> |
Daniel Norman | be3531a | 2024-07-31 21:29:03 +0000 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.MANAGE_USERS"/> |
Riley Jones | 246a9a0 | 2023-01-23 15:35:08 +0000 | [diff] [blame] | 22 | |
Daniel Norman | c956ac6 | 2023-02-01 11:24:23 -0800 | [diff] [blame] | 23 | <application android:supportsRtl="true"> |
Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 24 | <service |
| 25 | android:name="com.android.systemui.accessibility.accessibilitymenu.AccessibilityMenuService" |
| 26 | android:exported="false" |
Daniel Norman | c956ac6 | 2023-02-01 11:24:23 -0800 | [diff] [blame] | 27 | android:label="@string/accessibility_menu_service_name" |
| 28 | android:icon="@drawable/ic_logo_app" |
Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 29 | android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> |
| 30 | <intent-filter> |
| 31 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 32 | </intent-filter> |
| 33 | <meta-data |
| 34 | android:name="android.accessibilityservice" |
| 35 | android:resource="@xml/accessibilitymenu_service"/> |
| 36 | </service> |
Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 37 | |
| 38 | <!-- Accessibility Menu Settings --> |
| 39 | <activity |
| 40 | android:name="com.android.systemui.accessibility.accessibilitymenu.activity.A11yMenuSettingsActivity" |
| 41 | android:exported="true" |
| 42 | android:label="@string/accessibility_menu_settings_name" |
| 43 | android:launchMode="singleTop" |
Daniel Norman | b4e13f7 | 2024-04-01 19:37:12 +0000 | [diff] [blame] | 44 | android:theme="@style/SettingsTheme"> |
Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 45 | <intent-filter> |
| 46 | <action android:name="android.intent.action.MAIN"/> |
| 47 | |
| 48 | <category android:name="android.accessibilityservice.SERVICE_SETTINGS"/> |
| 49 | </intent-filter> |
| 50 | </activity> |
Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 51 | </application> |
Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 52 | |
| 53 | <queries> |
| 54 | <intent> |
| 55 | <action android:name="android.intent.action.VIEW" /> |
| 56 | <category android:name="android.intent.category.BROWSABLE" /> |
| 57 | <data android:scheme="https" /> |
| 58 | </intent> |
Daniel Norman | 51ce841 | 2023-02-15 13:38:44 -0800 | [diff] [blame] | 59 | <intent> |
| 60 | <action android:name="android.intent.action.VOICE_COMMAND" /> |
| 61 | </intent> |
Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 62 | </queries> |
Daniel Norman | b4e13f7 | 2024-04-01 19:37:12 +0000 | [diff] [blame] | 63 | </manifest> |