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 | --> |
| 20 | <manifest |
| 21 | xmlns:android="http://schemas.android.com/apk/res/android" |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 22 | xmlns:tools="http://schemas.android.com/tools" |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 23 | package="com.android.launcher3" > |
| 24 | |
Jon Miranda | 6905717 | 2018-01-18 09:44:54 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS" /> |
Sunny Goyal | 6b0eb38 | 2019-07-09 17:30:22 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.VIBRATE" /> |
neobuddy89 | 9cb384d | 2019-01-26 21:45:02 +0530 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 28 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 29 | <application |
| 30 | android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
| 31 | android:fullBackupOnly="true" |
| 32 | android:fullBackupContent="@xml/backupscheme" |
| 33 | android:hardwareAccelerated="true" |
| 34 | android:icon="@drawable/ic_launcher_home" |
| 35 | android:label="@string/derived_app_name" |
Sunny Goyal | 03f17fa | 2018-06-08 15:22:44 -0700 | [diff] [blame] | 36 | android:theme="@style/AppTheme" |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 37 | android:largeHeap="@bool/config_largeHeap" |
| 38 | android:restoreAnyVersion="true" |
| 39 | android:supportsRtl="true" > |
| 40 | |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 41 | <service |
| 42 | android:name="com.android.quickstep.TouchInteractionService" |
Tony | 573c3e1 | 2019-02-22 13:10:59 -0800 | [diff] [blame] | 43 | android:permission="android.permission.STATUS_BAR_SERVICE" |
Tony Wickham | 1ccc313 | 2019-03-13 20:19:08 +0000 | [diff] [blame] | 44 | android:directBootAware="true" > |
Sunny Goyal | 2c3eafc | 2018-03-01 10:46:55 -0800 | [diff] [blame] | 45 | <intent-filter> |
| 46 | <action android:name="android.intent.action.QUICKSTEP_SERVICE" /> |
| 47 | </intent-filter> |
| 48 | </service> |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 49 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 50 | <!-- STOPSHIP: Change exported to false once all the integration is complete. |
| 51 | It is set to true so that the activity can be started from command line --> |
| 52 | <activity android:name="com.android.quickstep.RecentsActivity" |
Sunny Goyal | 9d69c8d | 2018-03-19 13:41:31 -0700 | [diff] [blame] | 53 | android:exported="true" |
Sunny Goyal | ab83773 | 2018-03-27 17:35:54 -0700 | [diff] [blame] | 54 | android:excludeFromRecents="true" |
| 55 | android:launchMode="singleTask" |
| 56 | android:clearTaskOnLaunch="true" |
| 57 | android:stateNotNeeded="true" |
| 58 | android:theme="@style/LauncherTheme" |
| 59 | android:screenOrientation="unspecified" |
Sunny Goyal | f5c5d04 | 2018-05-18 13:46:02 -0700 | [diff] [blame] | 60 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" |
Sunny Goyal | ab83773 | 2018-03-27 17:35:54 -0700 | [diff] [blame] | 61 | android:resizeableActivity="true" |
| 62 | android:resumeWhilePausing="true" |
| 63 | android:taskAffinity="" /> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 64 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 65 | <!-- Content provider to settings search. The autority should be same as the packageName --> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 66 | <provider |
| 67 | android:name="com.android.quickstep.LauncherSearchIndexablesProvider" |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 68 | android:authorities="${packageName}" |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 69 | android:grantUriPermissions="true" |
| 70 | android:multiprocess="true" |
| 71 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 72 | android:exported="true"> |
| 73 | <intent-filter> |
| 74 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" /> |
| 75 | </intent-filter> |
| 76 | </provider> |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 77 | |
Sunny Goyal | 18c699f | 2018-05-03 16:58:41 -0700 | [diff] [blame] | 78 | <service |
| 79 | android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService" |
| 80 | tools:node="remove" /> |
| 81 | |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 82 | <activity |
| 83 | android:name="com.android.launcher3.proxy.ProxyActivityStarter" |
| 84 | android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" |
| 85 | android:launchMode="singleTask" |
| 86 | android:clearTaskOnLaunch="true" |
| 87 | android:exported="false" /> |
| 88 | |
Sunny Goyal | 221895d | 2019-05-28 01:26:19 -0700 | [diff] [blame] | 89 | <activity android:name="com.android.quickstep.LockScreenRecentsActivity" |
| 90 | android:theme="@android:style/Theme.NoDisplay" |
| 91 | android:showOnLockScreen="true" |
Sunny Goyal | 91ac682 | 2019-10-15 12:06:06 -0700 | [diff] [blame] | 92 | android:taskAffinity="${packageName}.locktask" |
Sunny Goyal | 221895d | 2019-05-28 01:26:19 -0700 | [diff] [blame] | 93 | android:directBootAware="true" /> |
| 94 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 95 | </application> |
| 96 | |
| 97 | </manifest> |