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"> 20 <!-- System permission required by WM Shell Task Organizer. --> 21 <uses-permission android:name="android.permission.CAPTURE_BLACKOUT_CONTENT" /> 22 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> 23 <uses-permission android:name="android.permission.ROTATE_SURFACE_FLINGER" /> 24 <uses-permission android:name="android.permission.WAKEUP_SURFACE_FLINGER" /> 25 <uses-permission android:name="android.permission.READ_FRAME_BUFFER" /> 26 27 <application> 28 <activity 29 android:name=".desktopmode.DesktopWallpaperActivity" 30 android:excludeFromRecents="true" 31 android:launchMode="singleInstance" 32 android:theme="@style/DesktopWallpaperTheme" /> 33 34 <activity 35 android:name=".bubbles.shortcut.CreateBubbleShortcutActivity" 36 android:exported="true" 37 android:excludeFromRecents="true" 38 android:theme="@android:style/Theme.NoDisplay" 39 android:label="Bubbles" 40 android:icon="@drawable/ic_bubbles_shortcut_widget"> 41 <intent-filter> 42 <action android:name="android.intent.action.CREATE_SHORTCUT" /> 43 <category android:name="android.intent.category.DEFAULT" /> 44 </intent-filter> 45 </activity> 46 47 <activity 48 android:name=".bubbles.shortcut.ShowBubblesActivity" 49 android:exported="true" 50 android:excludeFromRecents="true" 51 android:theme="@android:style/Theme.NoDisplay" > 52 <intent-filter> 53 <action android:name="com.android.wm.shell.bubbles.action.SHOW_BUBBLES"/> 54 <category android:name="android.intent.category.DEFAULT" /> 55 </intent-filter> 56 </activity> 57 </application> 58</manifest> 59