blob: b83cb8a679f909ba34b7623b145ab329c161e53a [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"
Asher Simondsbcea7932018-02-12 10:47:16 +010036 android:icon="@mipmap/ic_launcher"
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"
Asher Simondsbcea7932018-02-12 10:47:16 +010042 tools:ignore="GoogleAppIndexingWarning"
43 tools:replace="android:icon">
Sunny Goyal0fc1be12014-08-11 17:05:23 -070044
Sunny Goyald83a67a2016-05-23 21:40:53 -070045 <!--
46 Main launcher activity. When extending only change the name, and keep all the
47 attributes and intent filters the same
48 -->
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040050 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051 android:launchMode="singleTask"
52 android:clearTaskOnLaunch="true"
53 android:stateNotNeeded="true"
Ng Zhi And772c0a2017-09-27 13:03:20 -070054 android:windowSoftInputMode="adjustPan"
Sunny Goyal623eddd2018-03-02 12:24:41 -080055 android:screenOrientation="unspecified"
Alex Chau84fe75d2021-11-03 17:07:16 +000056 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
Jon Miranda11f1e4c2017-02-27 14:32:39 -080057 android:resizeableActivity="true"
Winson Chung761e8202015-06-01 12:38:30 -070058 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070059 android:taskAffinity=""
Ashwini Orugantiaa902e82020-06-04 17:47:09 -070060 android:exported="true"
Adam Cohenc2d6e892014-10-16 09:49:24 -070061 android:enabled="true">
62 <intent-filter>
63 <action android:name="android.intent.action.MAIN" />
kholoud mohamedceec31b2022-02-03 15:44:25 +000064 <action android:name="android.intent.action.SHOW_WORK_APPS" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070065 <category android:name="android.intent.category.HOME" />
66 <category android:name="android.intent.category.DEFAULT" />
67 <category android:name="android.intent.category.MONKEY"/>
Sunny Goyalde788822017-08-30 14:56:54 -070068 <category android:name="android.intent.category.LAUNCHER_APP" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070069 </intent-filter>
Sunny Goyal6dda58a2019-01-24 15:40:44 -080070 <meta-data
71 android:name="com.android.launcher3.grid.control"
Santiago Etchebehere339de9d2019-01-29 14:15:15 -080072 android:value="${packageName}.grid_control" />
Danny Linc0dd40f2021-10-11 20:48:44 -070073 <meta-data
74 android:name="com.android.launcher3.themedicon.option"
75 android:value="${packageName}.grid_control" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070076 </activity>
77
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 </application>
79</manifest>