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 | |
Bernardo Rufino | e0484de | 2021-01-11 18:39:26 +0000 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" /> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 26 | <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 Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.START_TASKS_FROM_RECENTS"/> |
| 30 | <uses-permission android:name="android.permission.REMOVE_TASKS"/> |
Nick Chameyev | c52ec89 | 2021-11-29 12:21:35 +0000 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/> |
Tracy Zhou | f767c86 | 2023-10-17 12:38:18 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.STATUS_BAR"/> |
Tracy Zhou | f767c86 | 2023-10-17 12:38:18 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 36 | <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 Goyal | 52b5a4d | 2021-02-04 15:27:50 -0800 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.MONITOR_INPUT"/> |
Siarhei Vishniakou | b9bc132 | 2021-11-22 16:00:09 -0800 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.ALLOW_SLIPPERY_TOUCHES"/> |
Brian Isganitis | 209f10c | 2022-12-09 19:49:33 -0500 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.ACCESS_SHORTCUTS"/> |
minaripenguin | 1078cd1 | 2024-11-19 18:02:54 +0800 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.REGISTER_STATS_PULL_ATOM"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 44 | |
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 | |
Anna Zhuravleva | 7d623ce | 2024-02-08 18:25:31 +0000 | [diff] [blame] | 47 | <!-- |
| 48 | Permission required to access profiles which are otherwise hidden |
| 49 | from being visible via APIs, e.g. private profile. |
| 50 | --> |
| 51 | <uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES_FULL" /> |
| 52 | |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame] | 53 | <!-- Permission required to start a WidgetPickerActivity. --> |
Sunny Goyal | 2958616 | 2024-04-17 23:23:38 -0700 | [diff] [blame] | 54 | <permission android:name="${applicationId}.permission.START_WIDGET_PICKER_ACTIVITY" |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame] | 55 | android:protectionLevel="signature|privileged" /> |
| 56 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 57 | <application android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
Fengjiang Li | 45d79db | 2024-09-23 16:00:34 -0700 | [diff] [blame] | 58 | android:enableOnBackInvokedCallback="true" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 59 | android:fullBackupOnly="true" |
| 60 | android:fullBackupContent="@xml/backupscheme" |
| 61 | android:hardwareAccelerated="true" |
| 62 | android:icon="@drawable/ic_launcher_home" |
| 63 | android:label="@string/derived_app_name" |
| 64 | android:theme="@style/AppTheme" |
| 65 | android:largeHeap="@bool/config_largeHeap" |
| 66 | android:restoreAnyVersion="true" |
| 67 | android:supportsRtl="true"> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 68 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 69 | <service android:name="com.android.quickstep.TouchInteractionService" |
| 70 | android:permission="android.permission.STATUS_BAR_SERVICE" |
| 71 | android:directBootAware="true" |
| 72 | android:exported="true"> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 73 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 74 | <action android:name="android.intent.action.QUICKSTEP_SERVICE"/> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 75 | </intent-filter> |
| 76 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 77 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 78 | <activity android:name="com.android.quickstep.RecentsActivity" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 79 | android:excludeFromRecents="true" |
| 80 | android:launchMode="singleTask" |
| 81 | android:clearTaskOnLaunch="true" |
| 82 | android:stateNotNeeded="true" |
| 83 | android:theme="@style/LauncherTheme" |
Riddle Hsu | 827616c | 2024-02-07 23:05:13 +0800 | [diff] [blame] | 84 | android:screenOrientation="behind" |
Alex Chau | c76d4a8 | 2024-12-06 17:06:47 +0000 | [diff] [blame] | 85 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize|uiMode" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 86 | android:resizeableActivity="true" |
| 87 | android:resumeWhilePausing="true" |
wilsonshih | 70beba0 | 2024-04-12 08:34:45 +0000 | [diff] [blame] | 88 | android:enableOnBackInvokedCallback="false" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 89 | android:taskAffinity=""/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 90 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 91 | <!-- 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] | 92 | <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider" |
Sunny Goyal | 2958616 | 2024-04-17 23:23:38 -0700 | [diff] [blame] | 93 | android:authorities="${applicationId}" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 94 | android:grantUriPermissions="true" |
| 95 | android:multiprocess="true" |
| 96 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 97 | android:exported="true"> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 98 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 99 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 100 | </intent-filter> |
| 101 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 102 | |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 103 | <!-- FileProvider used for sharing images. --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 104 | <provider android:name="androidx.core.content.FileProvider" |
Sunny Goyal | 2958616 | 2024-04-17 23:23:38 -0700 | [diff] [blame] | 105 | android:authorities="${applicationId}.overview.fileprovider" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 106 | android:exported="false" |
| 107 | android:grantUriPermissions="true"> |
| 108 | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
| 109 | android:resource="@xml/overview_file_provider_paths"/> |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 110 | </provider> |
| 111 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 112 | <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
Charlie Anderson | 2934c46 | 2023-09-27 16:50:35 -0400 | [diff] [blame] | 113 | android:theme="@style/ProxyActivityStarterTheme" |
| 114 | android:launchMode="singleTask" |
| 115 | android:clearTaskOnLaunch="true" |
| 116 | android:exported="false" |
| 117 | /> |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 118 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 119 | <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 120 | android:autoRemoveFromRecents="true" |
| 121 | android:excludeFromRecents="true" |
Saumya Prakash | fd79b4d | 2023-03-03 23:03:51 +0000 | [diff] [blame] | 122 | android:theme="@style/GestureTutorialActivity" |
Saumya Prakash | e2711c2 | 2023-05-31 18:24:05 +0000 | [diff] [blame] | 123 | android:exported="true" |
| 124 | android:configChanges="orientation"> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 125 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 126 | <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/> |
| 127 | <category android:name="android.intent.category.DEFAULT"/> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 128 | </intent-filter> |
| 129 | </activity> |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 130 | |
| 131 | <!-- |
| 132 | Activity following gesture nav onboarding. |
| 133 | It's protected by android.permission.REBOOT to ensure that only system apps can start it |
| 134 | (setup wizard already has this permission) |
| 135 | --> |
| 136 | <activity android:name="com.android.quickstep.interaction.AllSetActivity" |
| 137 | android:autoRemoveFromRecents="true" |
| 138 | android:excludeFromRecents="true" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 139 | android:permission="android.permission.REBOOT" |
Sunny Goyal | ce50b9e | 2021-06-29 16:31:23 -0700 | [diff] [blame] | 140 | android:theme="@style/AllSetTheme" |
| 141 | android:label="@string/allset_title" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 142 | android:exported="true"> |
| 143 | <intent-filter> |
| 144 | <action android:name="com.android.quickstep.action.GESTURE_ONBOARDING_ALL_SET"/> |
| 145 | <category android:name="android.intent.category.DEFAULT"/> |
| 146 | </intent-filter> |
| 147 | </activity> |
| 148 | |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame] | 149 | <activity android:name="com.android.launcher3.WidgetPickerActivity" |
| 150 | android:theme="@style/WidgetPickerActivityTheme" |
| 151 | android:excludeFromRecents="true" |
| 152 | android:autoRemoveFromRecents="true" |
| 153 | android:showOnLockScreen="true" |
| 154 | android:launchMode="singleTop" |
| 155 | android:exported="true" |
Will Leshner | 0b01bf4 | 2024-11-12 12:24:05 -0800 | [diff] [blame] | 156 | android:permission="${applicationId}.permission.START_WIDGET_PICKER_ACTIVITY"> |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame] | 157 | <intent-filter> |
| 158 | <action android:name="android.intent.action.PICK" /> |
| 159 | <category android:name="android.intent.category.DEFAULT" /> |
| 160 | </intent-filter> |
| 161 | </activity> |
| 162 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 163 | </application> |
| 164 | |
| 165 | </manifest> |