blob: 7f63a370e351ea7e0d61be4ff7282edeb0ae7a87 [file] [log] [blame]
Sunny Goyal9d341962017-10-30 10:03:34 -07001<?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 Goyal9d341962017-10-30 10:03:34 -070020
Ashwini Oruganti23c28362020-06-04 17:47:09 -070021<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22 xmlns:tools="http://schemas.android.com/tools"
23 package="com.android.launcher3">
Sunny Goyal7f920b82018-06-27 15:47:49 -070024
Ashwini Oruganti23c28362020-06-04 17:47:09 -070025 <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/>
26 <uses-permission android:name="android.permission.VIBRATE"/>
27 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Sunny Goyal9d341962017-10-30 10:03:34 -070028
Ashwini Oruganti23c28362020-06-04 17:47:09 -070029
30 <application 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"
36 android:theme="@style/AppTheme"
37 android:largeHeap="@bool/config_largeHeap"
38 android:restoreAnyVersion="true"
39 android:supportsRtl="true">
40
41 <service android:name="com.android.quickstep.TouchInteractionService"
42 android:permission="android.permission.STATUS_BAR_SERVICE"
43 android:directBootAware="true"
44 android:exported="true">
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080045 <intent-filter>
Ashwini Oruganti23c28362020-06-04 17:47:09 -070046 <action android:name="android.intent.action.QUICKSTEP_SERVICE"/>
Sunny Goyal2c3eafc2018-03-01 10:46:55 -080047 </intent-filter>
48 </service>
Sunny Goyal9d341962017-10-30 10:03:34 -070049
Sunny Goyal73133392017-11-02 11:04:49 -070050 <activity android:name="com.android.quickstep.RecentsActivity"
Ashwini Oruganti23c28362020-06-04 17:47:09 -070051 android:excludeFromRecents="true"
52 android:launchMode="singleTask"
53 android:clearTaskOnLaunch="true"
54 android:stateNotNeeded="true"
55 android:theme="@style/LauncherTheme"
56 android:screenOrientation="unspecified"
57 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
58 android:resizeableActivity="true"
59 android:resumeWhilePausing="true"
60 android:taskAffinity=""/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070061
Sunny Goyal7f920b82018-06-27 15:47:49 -070062 <!-- Content provider to settings search. The autority should be same as the packageName -->
Ashwini Oruganti23c28362020-06-04 17:47:09 -070063 <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
64 android:authorities="${packageName}"
65 android:grantUriPermissions="true"
66 android:multiprocess="true"
67 android:permission="android.permission.READ_SEARCH_INDEXABLES"
68 android:exported="true">
Sunny Goyal3fbca152017-11-02 18:55:44 -070069 <intent-filter>
Ashwini Oruganti23c28362020-06-04 17:47:09 -070070 <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/>
Sunny Goyal3fbca152017-11-02 18:55:44 -070071 </intent-filter>
72 </provider>
Sunny Goyal18c699f2018-05-03 16:58:41 -070073
Sreyas1963d3f2020-03-09 18:10:08 -070074 <!-- FileProvider used for sharing images. -->
Ashwini Oruganti23c28362020-06-04 17:47:09 -070075 <provider android:name="androidx.core.content.FileProvider"
76 android:authorities="${packageName}.overview.fileprovider"
77 android:exported="false"
78 android:grantUriPermissions="true">
79 <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
80 android:resource="@xml/overview_file_provider_paths"/>
Sreyas1963d3f2020-03-09 18:10:08 -070081 </provider>
82
Ashwini Oruganti23c28362020-06-04 17:47:09 -070083 <service android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService"
84 tools:node="remove"/>
Sunny Goyal18c699f2018-05-03 16:58:41 -070085
Ashwini Oruganti23c28362020-06-04 17:47:09 -070086 <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter"
87 android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
88 android:launchMode="singleTask"
89 android:clearTaskOnLaunch="true"
90 android:exported="false"/>
Sunny Goyaldedda052019-05-14 15:23:48 -070091
Ashwini Oruganti23c28362020-06-04 17:47:09 -070092 <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity"
93 android:autoRemoveFromRecents="true"
94 android:excludeFromRecents="true"
95 android:taskAffinity="${packageName}.launcher"
96 android:screenOrientation="portrait"
97 android:exported="true">
Pinyao Ting72f93752019-12-26 10:22:00 -080098 <intent-filter>
Ashwini Oruganti23c28362020-06-04 17:47:09 -070099 <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/>
100 <category android:name="android.intent.category.DEFAULT"/>
Pinyao Ting72f93752019-12-26 10:22:00 -0800101 </intent-filter>
102 </activity>
103
Sunny Goyal9d341962017-10-30 10:03:34 -0700104 </application>
105
106</manifest>