blob: 4ac51ab7889b24d4e389ef2b595bbc2a08899997 [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 Goyald297be22016-05-10 15:35:02 -070023 <uses-sdk android:targetSdkVersion="23" android:minSdkVersion="21"/>
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"
Hyunyoung Song837eb1f2017-03-03 11:14:05 -080034 android:icon="@drawable/ic_launcher_home"
Sunny Goyal4a4b49f2016-08-25 22:21:40 -070035 android:label="@string/derived_app_name"
Sunny Goyalbd88f392018-06-07 15:42:57 -070036 android:theme="@style/AppTheme"
Sunny Goyale0e0e1d2016-06-07 13:53:20 -070037 android:largeHeap="@bool/config_largeHeap"
38 android:restoreAnyVersion="true"
39 android:supportsRtl="true" >
Sunny Goyal0fc1be12014-08-11 17:05:23 -070040
Sunny Goyald83a67a2016-05-23 21:40:53 -070041 <!--
42 Main launcher activity. When extending only change the name, and keep all the
43 attributes and intent filters the same
44 -->
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040046 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047 android:launchMode="singleTask"
48 android:clearTaskOnLaunch="true"
49 android:stateNotNeeded="true"
Ng Zhi And772c0a2017-09-27 13:03:20 -070050 android:windowSoftInputMode="adjustPan"
Sunny Goyal623eddd2018-03-02 12:24:41 -080051 android:screenOrientation="unspecified"
Sunny Goyalf5c5d042018-05-18 13:46:02 -070052 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
Jon Miranda11f1e4c2017-02-27 14:32:39 -080053 android:resizeableActivity="true"
Winson Chung761e8202015-06-01 12:38:30 -070054 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070055 android:taskAffinity=""
Adam Cohenc2d6e892014-10-16 09:49:24 -070056 android:enabled="true">
57 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.HOME" />
60 <category android:name="android.intent.category.DEFAULT" />
61 <category android:name="android.intent.category.MONKEY"/>
Sunny Goyalde788822017-08-30 14:56:54 -070062 <category android:name="android.intent.category.LAUNCHER_APP" />
Adam Cohenc2d6e892014-10-16 09:49:24 -070063 </intent-filter>
64 </activity>
65
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066 </application>
67</manifest>