blob: 4f580e0bd6bafbaf59f72d9de759faf2a8309ff9 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2008, 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"
Daniel Sandler325dc232013-06-05 22:57:57 -040022 package="com.android.launcher3">
Sunny Goyalcd2ac0f2022-04-14 21:21:47 -070023 <uses-sdk android:targetSdkVersion="33" android:minSdkVersion="26"/>
Sunny Goyald83a67a2016-05-23 21:40:53 -070024 <!--
25 Manifest entries specific to Launcher3. This is merged with AndroidManifest-common.xml.
26 Refer comments around specific entries on how to extend individual components.
27 -->
Jeff Hamilton95db7372010-02-11 16:25:50 -060028
Sunny Goyale0e0e1d2016-06-07 13:53:20 -070029 <application
30 android:backupAgent="com.android.launcher3.LauncherBackupAgent"
31 android:fullBackupOnly="true"
32 android:fullBackupContent="@xml/backupscheme"
33 android:hardwareAccelerated="true"
Sunny Goyal4af8cf92021-07-29 15:48:24 -070034 android:debuggable="true"
Hyunyoung Song837eb1f2017-03-03 11:14:05 -080035 android:icon="@drawable/ic_launcher_home"
Sunny Goyal4a4b49f2016-08-25 22:21:40 -070036 android:label="@string/derived_app_name"
Sunny Goyalbd88f392018-06-07 15:42:57 -070037 android:theme="@style/AppTheme"
Sunny Goyale0e0e1d2016-06-07 13:53:20 -070038 android:largeHeap="@bool/config_largeHeap"
39 android:restoreAnyVersion="true"
40 android:supportsRtl="true" >
Sunny Goyal0fc1be12014-08-11 17:05:23 -070041
Sunny Goyald83a67a2016-05-23 21:40:53 -070042 <!--
43 Main launcher activity. When extending only change the name, and keep all the
44 attributes and intent filters the same
45 -->
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040047 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048 android:launchMode="singleTask"
49 android:clearTaskOnLaunch="true"
50 android:stateNotNeeded="true"
Ng Zhi And772c0a2017-09-27 13:03:20 -070051 android:windowSoftInputMode="adjustPan"
Sunny Goyal623eddd2018-03-02 12:24:41 -080052 android:screenOrientation="unspecified"
Alex Chau84fe75d2021-11-03 17:07:16 +000053 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
Jon Miranda11f1e4c2017-02-27 14:32:39 -080054 android:resizeableActivity="true"
Winson Chung761e8202015-06-01 12:38:30 -070055 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070056 android:taskAffinity=""
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070057 android:exported="true"
Adam Cohenc2d6e892014-10-16 09:49:24 -070058 android:enabled="true">
59 <intent-filter>
60 <action android:name="android.intent.action.MAIN" />
kholoud mohamedceec31b2022-02-03 15:44:25 +000061 <action android:name="android.intent.action.SHOW_WORK_APPS" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070062 <category android:name="android.intent.category.HOME" />
63 <category android:name="android.intent.category.DEFAULT" />
64 <category android:name="android.intent.category.MONKEY"/>
Sunny Goyalde788822017-08-30 14:56:54 -070065 <category android:name="android.intent.category.LAUNCHER_APP" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070066 </intent-filter>
Sunny Goyal6dda58a2019-01-24 15:40:44 -080067 <meta-data
68 android:name="com.android.launcher3.grid.control"
Santiago Etchebehere339de9d2019-01-29 14:15:15 -080069 android:value="${packageName}.grid_control" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070070 </activity>
71
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072 </application>
73</manifest>