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 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/> |
| 31 | <uses-permission android:name="android.permission.VIBRATE"/> |
| 32 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 33 | <uses-permission android:name="${packageName}.permission.HOTSEAT_EDU" /> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 34 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 35 | <application android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
| 36 | android:fullBackupOnly="true" |
| 37 | android:fullBackupContent="@xml/backupscheme" |
| 38 | android:hardwareAccelerated="true" |
| 39 | android:icon="@drawable/ic_launcher_home" |
| 40 | android:label="@string/derived_app_name" |
| 41 | android:theme="@style/AppTheme" |
| 42 | android:largeHeap="@bool/config_largeHeap" |
| 43 | android:restoreAnyVersion="true" |
| 44 | android:supportsRtl="true"> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 45 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 46 | <service android:name="com.android.quickstep.TouchInteractionService" |
| 47 | android:permission="android.permission.STATUS_BAR_SERVICE" |
| 48 | android:directBootAware="true" |
| 49 | android:exported="true"> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 50 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 51 | <action android:name="android.intent.action.QUICKSTEP_SERVICE"/> |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 52 | </intent-filter> |
| 53 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 54 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 55 | <activity android:name="com.android.quickstep.RecentsActivity" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 56 | android:excludeFromRecents="true" |
| 57 | android:launchMode="singleTask" |
| 58 | android:clearTaskOnLaunch="true" |
| 59 | android:stateNotNeeded="true" |
| 60 | android:theme="@style/LauncherTheme" |
| 61 | android:screenOrientation="unspecified" |
Winson Chung | ff6d94d | 2020-10-28 00:13:57 -0700 | [diff] [blame] | 62 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 63 | android:resizeableActivity="true" |
| 64 | android:resumeWhilePausing="true" |
| 65 | android:taskAffinity=""/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 66 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 67 | <!-- 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] | 68 | <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider" |
| 69 | android:authorities="${packageName}" |
| 70 | android:grantUriPermissions="true" |
| 71 | android:multiprocess="true" |
| 72 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 73 | android:exported="true"> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 74 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 75 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 76 | </intent-filter> |
| 77 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 78 | |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 79 | <!-- FileProvider used for sharing images. --> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 80 | <provider android:name="androidx.core.content.FileProvider" |
| 81 | android:authorities="${packageName}.overview.fileprovider" |
| 82 | android:exported="false" |
| 83 | android:grantUriPermissions="true"> |
| 84 | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
| 85 | android:resource="@xml/overview_file_provider_paths"/> |
Sreyas | 1963d3f | 2020-03-09 18:10:08 -0700 | [diff] [blame] | 86 | </provider> |
| 87 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 88 | <service android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService" |
| 89 | tools:node="remove"/> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 90 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 91 | <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
| 92 | android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" |
| 93 | android:launchMode="singleTask" |
| 94 | android:clearTaskOnLaunch="true" |
| 95 | android:exported="false"/> |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 96 | |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 97 | <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity" |
| 98 | android:autoRemoveFromRecents="true" |
| 99 | android:excludeFromRecents="true" |
| 100 | android:screenOrientation="portrait" |
| 101 | android:exported="true"> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 102 | <intent-filter> |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 103 | <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/> |
| 104 | <category android:name="android.intent.category.DEFAULT"/> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 105 | </intent-filter> |
| 106 | </activity> |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 107 | <activity |
| 108 | android:name=".hybridhotseat.HotseatEduActivity" |
| 109 | android:theme="@android:style/Theme.NoDisplay" |
| 110 | android:noHistory="true" |
| 111 | android:launchMode="singleTask" |
| 112 | android:clearTaskOnLaunch="true" |
Rajeev Kumar | b635411 | 2020-06-23 10:17:51 -0700 | [diff] [blame] | 113 | android:permission="${packageName}.permission.HOTSEAT_EDU" |
| 114 | android:exported="true"> |
Samuel Fufa | d25a112 | 2020-06-18 13:19:16 -0700 | [diff] [blame] | 115 | <intent-filter> |
| 116 | <action android:name="com.android.launcher3.action.SHOW_HYBRID_HOTSEAT_EDU"/> |
| 117 | <category android:name="android.intent.category.DEFAULT" /> |
| 118 | </intent-filter> |
| 119 | </activity> |
Pinyao Ting | 72f9375 | 2019-12-26 10:22:00 -0800 | [diff] [blame] | 120 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 121 | </application> |
| 122 | |
| 123 | </manifest> |