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"/> |
| 33 | <uses-permission android:name="android.permission.STATUS_BAR"/> |
| 34 | <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/> |
| 35 | <uses-permission android:name="android.permission.SET_ORIENTATION"/> |
| 36 | <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/> |
| 37 | <uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/> |
Sunny Goyal | 52b5a4d | 2021-02-04 15:27:50 -0800 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.MONITOR_INPUT"/> |
Siarhei Vishniakou | b9bc132 | 2021-11-22 16:00:09 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.ALLOW_SLIPPERY_TOUCHES"/> |
Brian Isganitis | 209f10c | 2022-12-09 19:49:33 -0500 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.ACCESS_SHORTCUTS"/> |
Sunny Goyal | f72c368 | 2021-01-11 13:59:07 -0800 | [diff] [blame] | 41 | |
Tony Wickham | 63fc59b | 2021-02-04 08:36:08 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" /> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 43 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 44 | <application android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
| 45 | android:fullBackupOnly="true" |
| 46 | android:fullBackupContent="@xml/backupscheme" |
| 47 | android:hardwareAccelerated="true" |
Asher Simonds | bcea793 | 2018-02-12 10:47:16 +0100 | [diff] [blame] | 48 | android:icon="@mipmap/ic_launcher" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 49 | android:label="@string/derived_app_name" |
| 50 | android:theme="@style/AppTheme" |
| 51 | android:largeHeap="@bool/config_largeHeap" |
| 52 | android:restoreAnyVersion="true" |
| 53 | android:supportsRtl="true"> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 54 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 55 | <service android:name="com.android.quickstep.TouchInteractionService" |
| 56 | android:permission="android.permission.STATUS_BAR_SERVICE" |
| 57 | android:directBootAware="true" |
| 58 | android:exported="true"> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 59 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 60 | <action android:name="android.intent.action.QUICKSTEP_SERVICE"/> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 61 | </intent-filter> |
| 62 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 63 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 64 | <activity android:name="com.android.quickstep.RecentsActivity" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 65 | android:excludeFromRecents="true" |
| 66 | android:launchMode="singleTask" |
| 67 | android:clearTaskOnLaunch="true" |
| 68 | android:stateNotNeeded="true" |
| 69 | android:theme="@style/LauncherTheme" |
| 70 | android:screenOrientation="unspecified" |
Alex Chau | 84fe75d | 2021-11-03 17:07:16 +0000 | [diff] [blame] | 71 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 72 | android:resizeableActivity="true" |
| 73 | android:resumeWhilePausing="true" |
| 74 | android:taskAffinity=""/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 75 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 76 | <!-- 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] | 77 | <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider" |
| 78 | android:authorities="${packageName}" |
| 79 | android:grantUriPermissions="true" |
| 80 | android:multiprocess="true" |
| 81 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 82 | android:exported="true"> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 83 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 84 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 85 | </intent-filter> |
| 86 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 87 | |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 88 | <!-- FileProvider used for sharing images. --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 89 | <provider android:name="androidx.core.content.FileProvider" |
| 90 | android:authorities="${packageName}.overview.fileprovider" |
| 91 | android:exported="false" |
| 92 | android:grantUriPermissions="true"> |
| 93 | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
| 94 | android:resource="@xml/overview_file_provider_paths"/> |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 95 | </provider> |
| 96 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 97 | <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
| 98 | android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" |
| 99 | android:launchMode="singleTask" |
| 100 | android:clearTaskOnLaunch="true" |
| 101 | android:exported="false"/> |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 102 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 103 | <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 104 | android:autoRemoveFromRecents="true" |
| 105 | android:excludeFromRecents="true" |
Saumya Prakash | fd79b4d | 2023-03-03 23:03:51 +0000 | [diff] [blame] | 106 | android:theme="@style/GestureTutorialActivity" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 107 | android:exported="true"> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 108 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 109 | <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/> |
| 110 | <category android:name="android.intent.category.DEFAULT"/> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 111 | </intent-filter> |
| 112 | </activity> |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 113 | |
| 114 | <!-- |
| 115 | Activity following gesture nav onboarding. |
| 116 | It's protected by android.permission.REBOOT to ensure that only system apps can start it |
| 117 | (setup wizard already has this permission) |
| 118 | --> |
| 119 | <activity android:name="com.android.quickstep.interaction.AllSetActivity" |
| 120 | android:autoRemoveFromRecents="true" |
| 121 | android:excludeFromRecents="true" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 122 | android:permission="android.permission.REBOOT" |
Sunny Goyal | ce50b9e | 2021-06-29 16:31:23 -0700 | [diff] [blame] | 123 | android:theme="@style/AllSetTheme" |
| 124 | android:label="@string/allset_title" |
Andy Wickham | 474c616 | 2021-05-03 18:26:44 -0700 | [diff] [blame] | 125 | android:exported="true"> |
| 126 | <intent-filter> |
| 127 | <action android:name="com.android.quickstep.action.GESTURE_ONBOARDING_ALL_SET"/> |
| 128 | <category android:name="android.intent.category.DEFAULT"/> |
| 129 | </intent-filter> |
| 130 | </activity> |
| 131 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 132 | </application> |
| 133 | |
| 134 | </manifest> |