blob: 201c5f6917db75aa7a8928172e4c39d13d36cf61 [file] [log] [blame]
Sunny Goyal9d341962017-10-30 10:03:34 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2017, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
Sunny Goyal9d341962017-10-30 10:03:34 -070020
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070021<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22 xmlns:tools="http://schemas.android.com/tools"
23 package="com.android.launcher3">
24
Bernardo Rufinoe0484de2021-01-11 18:39:26 +000025 <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" />
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070026 <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/>
27 <uses-permission android:name="android.permission.VIBRATE"/>
28 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080029 <uses-permission android:name="android.permission.START_TASKS_FROM_RECENTS"/>
30 <uses-permission android:name="android.permission.REMOVE_TASKS"/>
Nick Chameyevc52ec892021-11-29 12:21:35 +000031 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080032 <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/>
Tracy Zhouf767c862023-10-17 12:38:18 -070033 <uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080034 <uses-permission android:name="android.permission.STATUS_BAR"/>
Tracy Zhouf767c862023-10-17 12:38:18 -070035 <uses-permission android:name="android.permission.STATUS_BAR_SERVICE"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080036 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
37 <uses-permission android:name="android.permission.SET_ORIENTATION"/>
38 <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
39 <uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/>
Sunny Goyal52b5a4d2021-02-04 15:27:50 -080040 <uses-permission android:name="android.permission.MONITOR_INPUT"/>
Siarhei Vishniakoub9bc1322021-11-22 16:00:09 -080041 <uses-permission android:name="android.permission.ALLOW_SLIPPERY_TOUCHES"/>
Brian Isganitis209f10c2022-12-09 19:49:33 -050042 <uses-permission android:name="android.permission.ACCESS_SHORTCUTS"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080043
Tony Wickham63fc59b2021-02-04 08:36:08 -080044 <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" />
Sunny Goyal7f920b82018-06-27 15:47:49 -070045
Anna Zhuravleva7d623ce2024-02-08 18:25:31 +000046 <!--
47 Permission required to access profiles which are otherwise hidden
48 from being visible via APIs, e.g. private profile.
49 -->
50 <uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES_FULL" />
51
Will Leshner9dce65e2023-11-17 16:45:56 -080052 <!-- Permission required to start a WidgetPickerActivity. -->
Sunny Goyal29586162024-04-17 23:23:38 -070053 <permission android:name="${applicationId}.permission.START_WIDGET_PICKER_ACTIVITY"
Will Leshner9dce65e2023-11-17 16:45:56 -080054 android:protectionLevel="signature|privileged" />
55
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070056 <application android:backupAgent="com.android.launcher3.LauncherBackupAgent"
Fengjiang Li45d79db2024-09-23 16:00:34 -070057 android:enableOnBackInvokedCallback="true"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070058 android:fullBackupOnly="true"
59 android:fullBackupContent="@xml/backupscheme"
60 android:hardwareAccelerated="true"
61 android:icon="@drawable/ic_launcher_home"
62 android:label="@string/derived_app_name"
63 android:theme="@style/AppTheme"
64 android:largeHeap="@bool/config_largeHeap"
65 android:restoreAnyVersion="true"
66 android:supportsRtl="true">
Sunny Goyal9d341962017-10-30 10:03:34 -070067
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070068 <service android:name="com.android.quickstep.TouchInteractionService"
69 android:permission="android.permission.STATUS_BAR_SERVICE"
70 android:directBootAware="true"
71 android:exported="true">
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080072 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070073 <action android:name="android.intent.action.QUICKSTEP_SERVICE"/>
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080074 </intent-filter>
75 </service>
Sunny Goyal9d341962017-10-30 10:03:34 -070076
Sunny Goyal73133392017-11-02 11:04:49 -070077 <activity android:name="com.android.quickstep.RecentsActivity"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070078 android:excludeFromRecents="true"
79 android:launchMode="singleTask"
80 android:clearTaskOnLaunch="true"
81 android:stateNotNeeded="true"
82 android:theme="@style/LauncherTheme"
Riddle Hsu827616c2024-02-07 23:05:13 +080083 android:screenOrientation="behind"
Alex Chauc76d4a82024-12-06 17:06:47 +000084 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070085 android:resizeableActivity="true"
86 android:resumeWhilePausing="true"
wilsonshih70beba02024-04-12 08:34:45 +000087 android:enableOnBackInvokedCallback="false"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070088 android:taskAffinity=""/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070089
Sunny Goyal7f920b82018-06-27 15:47:49 -070090 <!-- Content provider to settings search. The autority should be same as the packageName -->
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070091 <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
Sunny Goyal29586162024-04-17 23:23:38 -070092 android:authorities="${applicationId}"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070093 android:grantUriPermissions="true"
94 android:multiprocess="true"
95 android:permission="android.permission.READ_SEARCH_INDEXABLES"
96 android:exported="true">
Sunny Goyal3fbca152017-11-02 18:55:44 -070097 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070098 <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070099 </intent-filter>
100 </provider>
Sunny Goyal18c699f2018-05-03 16:58:41 -0700101
Sreyas1963d3f2020-03-09 18:10:08 -0700102 <!-- FileProvider used for sharing images. -->
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700103 <provider android:name="androidx.core.content.FileProvider"
Sunny Goyal29586162024-04-17 23:23:38 -0700104 android:authorities="${applicationId}.overview.fileprovider"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700105 android:exported="false"
106 android:grantUriPermissions="true">
107 <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
108 android:resource="@xml/overview_file_provider_paths"/>
Sreyas1963d3f2020-03-09 18:10:08 -0700109 </provider>
110
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700111 <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter"
Charlie Anderson2934c462023-09-27 16:50:35 -0400112 android:theme="@style/ProxyActivityStarterTheme"
113 android:launchMode="singleTask"
114 android:clearTaskOnLaunch="true"
115 android:exported="false"
116 />
Sunny Goyaldedda052019-05-14 15:23:48 -0700117
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700118 <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity"
Andy Wickham474c6162021-05-03 18:26:44 -0700119 android:autoRemoveFromRecents="true"
120 android:excludeFromRecents="true"
Saumya Prakashfd79b4d2023-03-03 23:03:51 +0000121 android:theme="@style/GestureTutorialActivity"
Saumya Prakashe2711c22023-05-31 18:24:05 +0000122 android:exported="true"
123 android:configChanges="orientation">
Pinyao Ting72f93752019-12-26 10:22:00 -0800124 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700125 <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/>
126 <category android:name="android.intent.category.DEFAULT"/>
Pinyao Ting72f93752019-12-26 10:22:00 -0800127 </intent-filter>
128 </activity>
Andy Wickham474c6162021-05-03 18:26:44 -0700129
130 <!--
131 Activity following gesture nav onboarding.
132 It's protected by android.permission.REBOOT to ensure that only system apps can start it
133 (setup wizard already has this permission)
134 -->
135 <activity android:name="com.android.quickstep.interaction.AllSetActivity"
136 android:autoRemoveFromRecents="true"
137 android:excludeFromRecents="true"
Andy Wickham474c6162021-05-03 18:26:44 -0700138 android:permission="android.permission.REBOOT"
Sunny Goyalce50b9e2021-06-29 16:31:23 -0700139 android:theme="@style/AllSetTheme"
140 android:label="@string/allset_title"
Andy Wickham474c6162021-05-03 18:26:44 -0700141 android:exported="true">
142 <intent-filter>
143 <action android:name="com.android.quickstep.action.GESTURE_ONBOARDING_ALL_SET"/>
144 <category android:name="android.intent.category.DEFAULT"/>
145 </intent-filter>
146 </activity>
147
Will Leshner9dce65e2023-11-17 16:45:56 -0800148 <activity android:name="com.android.launcher3.WidgetPickerActivity"
149 android:theme="@style/WidgetPickerActivityTheme"
150 android:excludeFromRecents="true"
151 android:autoRemoveFromRecents="true"
152 android:showOnLockScreen="true"
153 android:launchMode="singleTop"
154 android:exported="true"
Will Leshner0b01bf42024-11-12 12:24:05 -0800155 android:permission="${applicationId}.permission.START_WIDGET_PICKER_ACTIVITY">
Will Leshner9dce65e2023-11-17 16:45:56 -0800156 <intent-filter>
157 <action android:name="android.intent.action.PICK" />
158 <category android:name="android.intent.category.DEFAULT" />
159 </intent-filter>
160 </activity>
161
Sunny Goyal9d341962017-10-30 10:03:34 -0700162 </application>
163
164</manifest>