| 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"/> |
| 21 | |
| Daniel Norman | c956ac6 | 2023-02-01 11:24:23 -0800 | [diff] [blame] | 22 | <application android:supportsRtl="true"> |
| Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 23 | <service |
| 24 | android:name="com.android.systemui.accessibility.accessibilitymenu.AccessibilityMenuService" |
| 25 | android:exported="false" |
| Daniel Norman | c956ac6 | 2023-02-01 11:24:23 -0800 | [diff] [blame] | 26 | android:label="@string/accessibility_menu_service_name" |
| 27 | android:icon="@drawable/ic_logo_app" |
| Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 28 | android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> |
| 29 | <intent-filter> |
| 30 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 31 | </intent-filter> |
| 32 | <meta-data |
| 33 | android:name="android.accessibilityservice" |
| 34 | android:resource="@xml/accessibilitymenu_service"/> |
| 35 | </service> |
| Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 36 | |
| 37 | <!-- Accessibility Menu Settings --> |
| 38 | <activity |
| 39 | android:name="com.android.systemui.accessibility.accessibilitymenu.activity.A11yMenuSettingsActivity" |
| 40 | android:exported="true" |
| 41 | android:label="@string/accessibility_menu_settings_name" |
| 42 | android:launchMode="singleTop" |
| 43 | android:theme="@style/AccessibilityMenuSettings"> |
| 44 | <intent-filter> |
| 45 | <action android:name="android.intent.action.MAIN"/> |
| 46 | |
| 47 | <category android:name="android.accessibilityservice.SERVICE_SETTINGS"/> |
| 48 | </intent-filter> |
| 49 | </activity> |
| Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 50 | </application> |
| Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 51 | |
| 52 | <queries> |
| 53 | <intent> |
| 54 | <action android:name="android.intent.action.VIEW" /> |
| 55 | <category android:name="android.intent.category.BROWSABLE" /> |
| 56 | <data android:scheme="https" /> |
| 57 | </intent> |
| Daniel Norman | 51ce841 | 2023-02-15 13:38:44 -0800 | [diff] [blame] | 58 | <intent> |
| 59 | <action android:name="android.intent.action.VOICE_COMMAND" /> |
| 60 | </intent> |
| Riley Jones | b212fee | 2023-02-03 11:03:49 +0000 | [diff] [blame] | 61 | </queries> |
| Daniel Norman | ce56244 | 2022-11-29 13:13:33 -0800 | [diff] [blame] | 62 | </manifest> |