blob: 1260796810c2024678282b5389e54a74ed18700d [file] [log] [blame]
Winson Chung10a9b4b2019-12-18 10:01:36 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2019 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.wm.shell">
Heemin Seog4fe9ff32021-03-17 16:55:52 -070020 <!-- System permission required by WM Shell Task Organizer. -->
chaviwfb796312021-04-28 15:33:21 -050021 <uses-permission android:name="android.permission.CAPTURE_BLACKOUT_CONTENT" />
Yuncheol Heo907c7e82021-06-08 13:14:51 -070022 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
Ben Lin70a82b92021-01-20 19:08:36 -080023 <uses-permission android:name="android.permission.ROTATE_SURFACE_FLINGER" />
Vishnu Nair27328af2022-12-01 17:28:42 -080024 <uses-permission android:name="android.permission.WAKEUP_SURFACE_FLINGER" />
wilsonshih11af33e2021-02-03 22:51:15 +080025 <uses-permission android:name="android.permission.READ_FRAME_BUFFER" />
Tony Wickhamd355d352024-08-30 22:50:47 +000026 <uses-permission android:name="android.permission.SUBSCRIBE_TO_KEYGUARD_LOCKED_STATE" />
Maryam Dehainif2bfad22024-10-01 15:07:49 -070027 <uses-permission android:name="android.permission.UPDATE_DOMAIN_VERIFICATION_USER_SELECTION" />
Ivan Tkachenko06b54262024-04-10 16:12:41 +000028
29 <application>
30 <activity
31 android:name=".desktopmode.DesktopWallpaperActivity"
32 android:excludeFromRecents="true"
33 android:launchMode="singleInstance"
Ivan Tkachenko37ba9eb2024-06-21 18:33:52 +000034 android:showForAllUsers="true"
Ivan Tkachenko06b54262024-04-10 16:12:41 +000035 android:theme="@style/DesktopWallpaperTheme" />
Ats Jenk936749e2024-05-22 10:24:16 -070036
37 <activity
38 android:name=".bubbles.shortcut.CreateBubbleShortcutActivity"
Ats Jenka4027032024-06-14 13:03:25 -070039 android:featureFlag="com.android.wm.shell.enable_retrievable_bubbles"
Ats Jenk936749e2024-05-22 10:24:16 -070040 android:exported="true"
41 android:excludeFromRecents="true"
42 android:theme="@android:style/Theme.NoDisplay"
43 android:label="Bubbles"
44 android:icon="@drawable/ic_bubbles_shortcut_widget">
45 <intent-filter>
46 <action android:name="android.intent.action.CREATE_SHORTCUT" />
47 <category android:name="android.intent.category.DEFAULT" />
48 </intent-filter>
49 </activity>
50
51 <activity
52 android:name=".bubbles.shortcut.ShowBubblesActivity"
Ats Jenka4027032024-06-14 13:03:25 -070053 android:featureFlag="com.android.wm.shell.enable_retrievable_bubbles"
Ats Jenk936749e2024-05-22 10:24:16 -070054 android:exported="true"
55 android:excludeFromRecents="true"
56 android:theme="@android:style/Theme.NoDisplay" >
57 <intent-filter>
58 <action android:name="com.android.wm.shell.bubbles.action.SHOW_BUBBLES"/>
59 <category android:name="android.intent.category.DEFAULT" />
60 </intent-filter>
61 </activity>
Ivan Tkachenko06b54262024-04-10 16:12:41 +000062 </application>
Winson Chung10a9b4b2019-12-18 10:01:36 -080063</manifest>