blob: a7b91c2b2f6a1c7fe7651d195865a8f8896d2bf7 [file] [log] [blame]
Daniel Normance562442022-11-29 13:13:33 -08001<?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 Jones246a9a02023-01-23 15:35:08 +000019
20 <uses-permission android:name="android.permission.CONTROL_DISPLAY_BRIGHTNESS"/>
Daniel Normanbe3531a2024-07-31 21:29:03 +000021 <uses-permission android:name="android.permission.MANAGE_USERS"/>
Riley Jones246a9a02023-01-23 15:35:08 +000022
Daniel Normanc956ac62023-02-01 11:24:23 -080023 <application android:supportsRtl="true">
Daniel Normance562442022-11-29 13:13:33 -080024 <service
25 android:name="com.android.systemui.accessibility.accessibilitymenu.AccessibilityMenuService"
26 android:exported="false"
Daniel Normanc956ac62023-02-01 11:24:23 -080027 android:label="@string/accessibility_menu_service_name"
28 android:icon="@drawable/ic_logo_app"
Daniel Normance562442022-11-29 13:13:33 -080029 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 Jonesb212fee2023-02-03 11:03:49 +000037
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 Normanb4e13f72024-04-01 19:37:12 +000044 android:theme="@style/SettingsTheme">
Riley Jonesb212fee2023-02-03 11:03:49 +000045 <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 Normance562442022-11-29 13:13:33 -080051 </application>
Riley Jonesb212fee2023-02-03 11:03:49 +000052
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 Norman51ce8412023-02-15 13:38:44 -080059 <intent>
60 <action android:name="android.intent.action.VOICE_COMMAND" />
61 </intent>
Riley Jonesb212fee2023-02-03 11:03:49 +000062 </queries>
Daniel Normanb4e13f72024-04-01 19:37:12 +000063</manifest>