blob: 97f4a21a012ad931e6bd46c20653de481c863d6f [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
25 <permission
Samuel Fufad25a1122020-06-18 13:19:16 -070026 android:name="${packageName}.permission.HOTSEAT_EDU"
27 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
28 android:protectionLevel="signatureOrSystem" />
29
Bernardo Rufinoe0484de2021-01-11 18:39:26 +000030 <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" />
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070031 <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/>
32 <uses-permission android:name="android.permission.VIBRATE"/>
33 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080034 <uses-permission android:name="android.permission.START_TASKS_FROM_RECENTS"/>
35 <uses-permission android:name="android.permission.REMOVE_TASKS"/>
36 <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/>
37 <uses-permission android:name="android.permission.STATUS_BAR"/>
38 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
39 <uses-permission android:name="android.permission.SET_ORIENTATION"/>
40 <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
41 <uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/>
Sunny Goyal52b5a4d2021-02-04 15:27:50 -080042 <uses-permission android:name="android.permission.MONITOR_INPUT"/>
Sunny Goyalf72c3682021-01-11 13:59:07 -080043
Samuel Fufad25a1122020-06-18 13:19:16 -070044 <uses-permission android:name="${packageName}.permission.HOTSEAT_EDU" />
Tony Wickham63fc59b2021-02-04 08:36:08 -080045 <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" />
Sunny Goyal7f920b82018-06-27 15:47:49 -070046
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070047 <application android:backupAgent="com.android.launcher3.LauncherBackupAgent"
48 android:fullBackupOnly="true"
49 android:fullBackupContent="@xml/backupscheme"
50 android:hardwareAccelerated="true"
51 android:icon="@drawable/ic_launcher_home"
52 android:label="@string/derived_app_name"
53 android:theme="@style/AppTheme"
54 android:largeHeap="@bool/config_largeHeap"
55 android:restoreAnyVersion="true"
56 android:supportsRtl="true">
Sunny Goyal9d341962017-10-30 10:03:34 -070057
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070058 <service android:name="com.android.quickstep.TouchInteractionService"
59 android:permission="android.permission.STATUS_BAR_SERVICE"
60 android:directBootAware="true"
61 android:exported="true">
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080062 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070063 <action android:name="android.intent.action.QUICKSTEP_SERVICE"/>
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080064 </intent-filter>
65 </service>
Sunny Goyal9d341962017-10-30 10:03:34 -070066
Sunny Goyal73133392017-11-02 11:04:49 -070067 <activity android:name="com.android.quickstep.RecentsActivity"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070068 android:excludeFromRecents="true"
69 android:launchMode="singleTask"
70 android:clearTaskOnLaunch="true"
71 android:stateNotNeeded="true"
72 android:theme="@style/LauncherTheme"
73 android:screenOrientation="unspecified"
Winson Chungff6d94d2020-10-28 00:13:57 -070074 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070075 android:resizeableActivity="true"
76 android:resumeWhilePausing="true"
77 android:taskAffinity=""/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070078
Sunny Goyal7f920b82018-06-27 15:47:49 -070079 <!-- Content provider to settings search. The autority should be same as the packageName -->
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070080 <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
81 android:authorities="${packageName}"
82 android:grantUriPermissions="true"
83 android:multiprocess="true"
84 android:permission="android.permission.READ_SEARCH_INDEXABLES"
85 android:exported="true">
Sunny Goyal3fbca152017-11-02 18:55:44 -070086 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070087 <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070088 </intent-filter>
89 </provider>
Sunny Goyal18c699f2018-05-03 16:58:41 -070090
Sreyas1963d3f2020-03-09 18:10:08 -070091 <!-- FileProvider used for sharing images. -->
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070092 <provider android:name="androidx.core.content.FileProvider"
93 android:authorities="${packageName}.overview.fileprovider"
94 android:exported="false"
95 android:grantUriPermissions="true">
96 <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
97 android:resource="@xml/overview_file_provider_paths"/>
Sreyas1963d3f2020-03-09 18:10:08 -070098 </provider>
99
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700100 <service android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService"
101 tools:node="remove"/>
Sunny Goyal18c699f2018-05-03 16:58:41 -0700102
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700103 <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter"
104 android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
105 android:launchMode="singleTask"
106 android:clearTaskOnLaunch="true"
107 android:exported="false"/>
Sunny Goyaldedda052019-05-14 15:23:48 -0700108
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700109 <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity"
110 android:autoRemoveFromRecents="true"
111 android:excludeFromRecents="true"
112 android:screenOrientation="portrait"
113 android:exported="true">
Pinyao Ting72f93752019-12-26 10:22:00 -0800114 <intent-filter>
Ashwini Orugantiaa902e82020-06-04 17:47:09 -0700115 <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/>
116 <category android:name="android.intent.category.DEFAULT"/>
Pinyao Ting72f93752019-12-26 10:22:00 -0800117 </intent-filter>
118 </activity>
Samuel Fufad25a1122020-06-18 13:19:16 -0700119 <activity
120 android:name=".hybridhotseat.HotseatEduActivity"
121 android:theme="@android:style/Theme.NoDisplay"
122 android:noHistory="true"
123 android:launchMode="singleTask"
124 android:clearTaskOnLaunch="true"
Rajeev Kumarb6354112020-06-23 10:17:51 -0700125 android:permission="${packageName}.permission.HOTSEAT_EDU"
126 android:exported="true">
Samuel Fufad25a1122020-06-18 13:19:16 -0700127 <intent-filter>
128 <action android:name="com.android.launcher3.action.SHOW_HYBRID_HOTSEAT_EDU"/>
129 <category android:name="android.intent.category.DEFAULT" />
130 </intent-filter>
131 </activity>
Pinyao Ting72f93752019-12-26 10:22:00 -0800132
Sunny Goyal9d341962017-10-30 10:03:34 -0700133 </application>
134
135</manifest>