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"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 43 | |
Tony Wickham | 63fc59b | 2021-02-04 08:36:08 -0800 | [diff] [blame] | 44 | <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" /> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 45 | |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame^] | 46 | <!-- Permission required to start a WidgetPickerActivity. --> |
| 47 | <permission android:name="${packageName}.permission.START_WIDGET_PICKER_ACTIVITY" |
| 48 | android:protectionLevel="signature|privileged" /> |
| 49 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 50 | <application android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
| 51 | android:fullBackupOnly="true" |
| 52 | android:fullBackupContent="@xml/backupscheme" |
| 53 | android:hardwareAccelerated="true" |
| 54 | android:icon="@drawable/ic_launcher_home" |
| 55 | android:label="@string/derived_app_name" |
| 56 | android:theme="@style/AppTheme" |
| 57 | android:largeHeap="@bool/config_largeHeap" |
| 58 | android:restoreAnyVersion="true" |
| 59 | android:supportsRtl="true"> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 60 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 61 | <service android:name="com.android.quickstep.TouchInteractionService" |
| 62 | android:permission="android.permission.STATUS_BAR_SERVICE" |
| 63 | android:directBootAware="true" |
| 64 | android:exported="true"> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 65 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 66 | <action android:name="android.intent.action.QUICKSTEP_SERVICE"/> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 67 | </intent-filter> |
| 68 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 69 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 70 | <activity android:name="com.android.quickstep.RecentsActivity" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 71 | android:excludeFromRecents="true" |
| 72 | android:launchMode="singleTask" |
| 73 | android:clearTaskOnLaunch="true" |
| 74 | android:stateNotNeeded="true" |
| 75 | android:theme="@style/LauncherTheme" |
| 76 | android:screenOrientation="unspecified" |
Alex Chau | 84fe75d | 2021-11-03 17:07:16 +0000 | [diff] [blame] | 77 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 78 | android:resizeableActivity="true" |
| 79 | android:resumeWhilePausing="true" |
| 80 | android:taskAffinity=""/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 81 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 82 | <!-- 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] | 83 | <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider" |
| 84 | android:authorities="${packageName}" |
| 85 | android:grantUriPermissions="true" |
| 86 | android:multiprocess="true" |
| 87 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 88 | android:exported="true"> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 89 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 90 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 91 | </intent-filter> |
| 92 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 93 | |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 94 | <!-- FileProvider used for sharing images. --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 95 | <provider android:name="androidx.core.content.FileProvider" |
| 96 | android:authorities="${packageName}.overview.fileprovider" |
| 97 | android:exported="false" |
| 98 | android:grantUriPermissions="true"> |
| 99 | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
| 100 | android:resource="@xml/overview_file_provider_paths"/> |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 101 | </provider> |
| 102 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 103 | <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
Charlie Anderson | 2934c46 | 2023-09-27 16:50:35 -0400 | [diff] [blame] | 104 | android:theme="@style/ProxyActivityStarterTheme" |
| 105 | android:launchMode="singleTask" |
| 106 | android:clearTaskOnLaunch="true" |
| 107 | android:exported="false" |
| 108 | /> |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 109 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 110 | <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 111 | android:autoRemoveFromRecents="true" |
| 112 | android:excludeFromRecents="true" |
Saumya Prakash | fd79b4d | 2023-03-03 23:03:51 +0000 | [diff] [blame] | 113 | android:theme="@style/GestureTutorialActivity" |
Saumya Prakash | e2711c2 | 2023-05-31 18:24:05 +0000 | [diff] [blame] | 114 | android:exported="true" |
| 115 | android:configChanges="orientation"> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 116 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 117 | <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/> |
| 118 | <category android:name="android.intent.category.DEFAULT"/> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 119 | </intent-filter> |
| 120 | </activity> |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 121 | |
| 122 | <!-- |
| 123 | Activity following gesture nav onboarding. |
| 124 | It's protected by android.permission.REBOOT to ensure that only system apps can start it |
| 125 | (setup wizard already has this permission) |
| 126 | --> |
| 127 | <activity android:name="com.android.quickstep.interaction.AllSetActivity" |
| 128 | android:autoRemoveFromRecents="true" |
| 129 | android:excludeFromRecents="true" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 130 | android:permission="android.permission.REBOOT" |
Sunny Goyal | ce50b9e | 2021-06-29 16:31:23 -0700 | [diff] [blame] | 131 | android:theme="@style/AllSetTheme" |
| 132 | android:label="@string/allset_title" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 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 | |
Will Leshner | 9dce65e | 2023-11-17 16:45:56 -0800 | [diff] [blame^] | 140 | <activity android:name="com.android.launcher3.WidgetPickerActivity" |
| 141 | android:theme="@style/WidgetPickerActivityTheme" |
| 142 | android:excludeFromRecents="true" |
| 143 | android:autoRemoveFromRecents="true" |
| 144 | android:showOnLockScreen="true" |
| 145 | android:launchMode="singleTop" |
| 146 | android:exported="true" |
| 147 | android:permission="android.permission.START_WIDGET_PICKER_ACTIVITY"> |
| 148 | <intent-filter> |
| 149 | <action android:name="android.intent.action.PICK" /> |
| 150 | <category android:name="android.intent.category.DEFAULT" /> |
| 151 | </intent-filter> |
| 152 | </activity> |
| 153 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 154 | </application> |
| 155 | |
| 156 | </manifest> |