Winson Chung | 10a9b4b | 2019-12-18 10:01:36 -0800 | [diff] [blame] | 1 | <?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 Seog | 4fe9ff3 | 2021-03-17 16:55:52 -0700 | [diff] [blame] | 20 | <!-- System permission required by WM Shell Task Organizer. --> |
chaviw | fb79631 | 2021-04-28 15:33:21 -0500 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.CAPTURE_BLACKOUT_CONTENT" /> |
Yuncheol Heo | 907c7e8 | 2021-06-08 13:14:51 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Ben Lin | 70a82b9 | 2021-01-20 19:08:36 -0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.ROTATE_SURFACE_FLINGER" /> |
Vishnu Nair | 27328af | 2022-12-01 17:28:42 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.WAKEUP_SURFACE_FLINGER" /> |
wilsonshih | 11af33e | 2021-02-03 22:51:15 +0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.READ_FRAME_BUFFER" /> |
Tony Wickham | d355d35 | 2024-08-30 22:50:47 +0000 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.SUBSCRIBE_TO_KEYGUARD_LOCKED_STATE" /> |
Maryam Dehaini | f2bfad2 | 2024-10-01 15:07:49 -0700 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.UPDATE_DOMAIN_VERIFICATION_USER_SELECTION" /> |
Daichi Hirono | df792e1 | 2024-10-02 14:45:00 +0900 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.MANAGE_KEY_GESTURES" /> |
Ivan Tkachenko | 06b5426 | 2024-04-10 16:12:41 +0000 | [diff] [blame] | 29 | |
| 30 | <application> |
| 31 | <activity |
| 32 | android:name=".desktopmode.DesktopWallpaperActivity" |
| 33 | android:excludeFromRecents="true" |
| 34 | android:launchMode="singleInstance" |
Ivan Tkachenko | 37ba9eb | 2024-06-21 18:33:52 +0000 | [diff] [blame] | 35 | android:showForAllUsers="true" |
Ivan Tkachenko | 06b5426 | 2024-04-10 16:12:41 +0000 | [diff] [blame] | 36 | android:theme="@style/DesktopWallpaperTheme" /> |
Ats Jenk | 936749e | 2024-05-22 10:24:16 -0700 | [diff] [blame] | 37 | |
| 38 | <activity |
| 39 | android:name=".bubbles.shortcut.CreateBubbleShortcutActivity" |
Ats Jenk | a402703 | 2024-06-14 13:03:25 -0700 | [diff] [blame] | 40 | android:featureFlag="com.android.wm.shell.enable_retrievable_bubbles" |
Ats Jenk | 936749e | 2024-05-22 10:24:16 -0700 | [diff] [blame] | 41 | android:exported="true" |
| 42 | android:excludeFromRecents="true" |
| 43 | android:theme="@android:style/Theme.NoDisplay" |
| 44 | android:label="Bubbles" |
| 45 | android:icon="@drawable/ic_bubbles_shortcut_widget"> |
| 46 | <intent-filter> |
| 47 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 48 | <category android:name="android.intent.category.DEFAULT" /> |
| 49 | </intent-filter> |
| 50 | </activity> |
| 51 | |
| 52 | <activity |
| 53 | android:name=".bubbles.shortcut.ShowBubblesActivity" |
Ats Jenk | a402703 | 2024-06-14 13:03:25 -0700 | [diff] [blame] | 54 | android:featureFlag="com.android.wm.shell.enable_retrievable_bubbles" |
Ats Jenk | 936749e | 2024-05-22 10:24:16 -0700 | [diff] [blame] | 55 | android:exported="true" |
| 56 | android:excludeFromRecents="true" |
| 57 | android:theme="@android:style/Theme.NoDisplay" > |
| 58 | <intent-filter> |
| 59 | <action android:name="com.android.wm.shell.bubbles.action.SHOW_BUBBLES"/> |
| 60 | <category android:name="android.intent.category.DEFAULT" /> |
| 61 | </intent-filter> |
| 62 | </activity> |
Ivan Tkachenko | 06b5426 | 2024-04-10 16:12:41 +0000 | [diff] [blame] | 63 | </application> |
Winson Chung | 10a9b4b | 2019-12-18 10:01:36 -0800 | [diff] [blame] | 64 | </manifest> |