Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 1 | <?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 Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 20 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 21 | <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 Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 26 | android:name="${packageName}.permission.HOTSEAT_EDU" |
| 27 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 28 | android:protectionLevel="signatureOrSystem" /> |
| 29 | |
Bernardo Rufino | e0484de | 2021-01-11 18:39:26 +0000 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" /> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 31 | <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 Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 34 | <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 Goyal | 52b5a4d | 2021-02-04 15:27:50 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.MONITOR_INPUT"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 43 | |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 44 | <uses-permission android:name="${packageName}.permission.HOTSEAT_EDU" /> |
Tony Wickham | 63fc59b | 2021-02-04 08:36:08 -0800 | [diff] [blame] | 45 | <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" /> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 46 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 47 | <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 Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 57 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 58 | <service android:name="com.android.quickstep.TouchInteractionService" |
| 59 | android:permission="android.permission.STATUS_BAR_SERVICE" |
| 60 | android:directBootAware="true" |
| 61 | android:exported="true"> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 62 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 63 | <action android:name="android.intent.action.QUICKSTEP_SERVICE"/> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 64 | </intent-filter> |
| 65 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 66 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 67 | <activity android:name="com.android.quickstep.RecentsActivity" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 68 | android:excludeFromRecents="true" |
| 69 | android:launchMode="singleTask" |
| 70 | android:clearTaskOnLaunch="true" |
| 71 | android:stateNotNeeded="true" |
| 72 | android:theme="@style/LauncherTheme" |
| 73 | android:screenOrientation="unspecified" |
Alex Chau | 8c575c3 | 2021-03-01 12:20:26 +0000 | [diff] [blame] | 74 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 75 | android:resizeableActivity="true" |
| 76 | android:resumeWhilePausing="true" |
| 77 | android:taskAffinity=""/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 78 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 79 | <!-- Content provider to settings search. The autority should be same as the packageName --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 80 | <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 Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 86 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 87 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 88 | </intent-filter> |
| 89 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 90 | |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 91 | <!-- FileProvider used for sharing images. --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 92 | <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"/> |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 98 | </provider> |
| 99 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 100 | <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
| 101 | android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" |
| 102 | android:launchMode="singleTask" |
| 103 | android:clearTaskOnLaunch="true" |
| 104 | android:exported="false"/> |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 105 | |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame^] | 106 | <!-- |
| 107 | Activity for gesture nav onboarding. |
| 108 | It's protected by android.permission.REBOOT to ensure that only system apps can start it |
| 109 | (setup wizard already has this permission) |
| 110 | --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 111 | <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame^] | 112 | android:autoRemoveFromRecents="true" |
| 113 | android:excludeFromRecents="true" |
| 114 | android:screenOrientation="portrait" |
| 115 | android:permission="android.permission.REBOOT" |
| 116 | android:exported="true"> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 117 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 118 | <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/> |
| 119 | <category android:name="android.intent.category.DEFAULT"/> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 120 | </intent-filter> |
| 121 | </activity> |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame^] | 122 | |
| 123 | <!-- |
| 124 | Activity following gesture nav onboarding. |
| 125 | It's protected by android.permission.REBOOT to ensure that only system apps can start it |
| 126 | (setup wizard already has this permission) |
| 127 | --> |
| 128 | <activity android:name="com.android.quickstep.interaction.AllSetActivity" |
| 129 | android:autoRemoveFromRecents="true" |
| 130 | android:excludeFromRecents="true" |
| 131 | android:screenOrientation="portrait" |
| 132 | android:permission="android.permission.REBOOT" |
| 133 | android:exported="true"> |
| 134 | <intent-filter> |
| 135 | <action android:name="com.android.quickstep.action.GESTURE_ONBOARDING_ALL_SET"/> |
| 136 | <category android:name="android.intent.category.DEFAULT"/> |
| 137 | </intent-filter> |
| 138 | </activity> |
| 139 | |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 140 | <activity |
| 141 | android:name=".hybridhotseat.HotseatEduActivity" |
| 142 | android:theme="@android:style/Theme.NoDisplay" |
| 143 | android:noHistory="true" |
| 144 | android:launchMode="singleTask" |
| 145 | android:clearTaskOnLaunch="true" |
Rajeev Kumar | b635411 | 2020-06-23 10:17:51 -0700 | [diff] [blame] | 146 | android:permission="${packageName}.permission.HOTSEAT_EDU" |
| 147 | android:exported="true"> |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 148 | <intent-filter> |
| 149 | <action android:name="com.android.launcher3.action.SHOW_HYBRID_HOTSEAT_EDU"/> |
| 150 | <category android:name="android.intent.category.DEFAULT" /> |
| 151 | </intent-filter> |
| 152 | </activity> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 153 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 154 | </application> |
| 155 | |
| 156 | </manifest> |