blob: 8db92edb9bab3a1e3458282d5758d1b170406059 [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"
Joey0fd94762018-10-02 17:09:53 +020022 xmlns:tools="http://schemas.android.com/tools"
Daniel Sandler325dc232013-06-05 22:57:57 -040023 package="com.android.launcher3">
Sunny Goyalcd2ac0f2022-04-14 21:21:47 -070024 <uses-sdk android:targetSdkVersion="33" android:minSdkVersion="26"/>
Sunny Goyald83a67a2016-05-23 21:40:53 -070025 <!--
26 Manifest entries specific to Launcher3. This is merged with AndroidManifest-common.xml.
27 Refer comments around specific entries on how to extend individual components.
28 -->
Jeff Hamilton95db7372010-02-11 16:25:50 -060029
Sunny Goyale0e0e1d2016-06-07 13:53:20 -070030 <application
31 android:backupAgent="com.android.launcher3.LauncherBackupAgent"
32 android:fullBackupOnly="true"
33 android:fullBackupContent="@xml/backupscheme"
34 android:hardwareAccelerated="true"
Sunny Goyal4af8cf92021-07-29 15:48:24 -070035 android:debuggable="true"
Hyunyoung Song837eb1f2017-03-03 11:14:05 -080036 android:icon="@drawable/ic_launcher_home"
Sunny Goyal4a4b49f2016-08-25 22:21:40 -070037 android:label="@string/derived_app_name"
Sunny Goyalbd88f392018-06-07 15:42:57 -070038 android:theme="@style/AppTheme"
Sunny Goyale0e0e1d2016-06-07 13:53:20 -070039 android:largeHeap="@bool/config_largeHeap"
40 android:restoreAnyVersion="true"
Joey0fd94762018-10-02 17:09:53 +020041 android:supportsRtl="true"
42 tools:ignore="GoogleAppIndexingWarning">
Sunny Goyal0fc1be12014-08-11 17:05:23 -070043
Sunny Goyald83a67a2016-05-23 21:40:53 -070044 <!--
45 Main launcher activity. When extending only change the name, and keep all the
46 attributes and intent filters the same
47 -->
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040049 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050 android:launchMode="singleTask"
51 android:clearTaskOnLaunch="true"
52 android:stateNotNeeded="true"
Ng Zhi And772c0a2017-09-27 13:03:20 -070053 android:windowSoftInputMode="adjustPan"
Sunny Goyal623eddd2018-03-02 12:24:41 -080054 android:screenOrientation="unspecified"
Alex Chau84fe75d2021-11-03 17:07:16 +000055 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
Jon Miranda11f1e4c2017-02-27 14:32:39 -080056 android:resizeableActivity="true"
Winson Chung761e8202015-06-01 12:38:30 -070057 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070058 android:taskAffinity=""
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070059 android:exported="true"
Adam Cohenc2d6e892014-10-16 09:49:24 -070060 android:enabled="true">
61 <intent-filter>
62 <action android:name="android.intent.action.MAIN" />
kholoud mohamedceec31b2022-02-03 15:44:25 +000063 <action android:name="android.intent.action.SHOW_WORK_APPS" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070064 <category android:name="android.intent.category.HOME" />
65 <category android:name="android.intent.category.DEFAULT" />
66 <category android:name="android.intent.category.MONKEY"/>
Sunny Goyalde788822017-08-30 14:56:54 -070067 <category android:name="android.intent.category.LAUNCHER_APP" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070068 </intent-filter>
Sunny Goyal6dda58a2019-01-24 15:40:44 -080069 <meta-data
70 android:name="com.android.launcher3.grid.control"
Santiago Etchebehere339de9d2019-01-29 14:15:15 -080071 android:value="${packageName}.grid_control" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070072 </activity>
73
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 </application>
75</manifest>