The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | <?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 Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 22 | package="com.android.launcher3"> |
Sunny Goyal | eaf7a95 | 2020-07-29 16:54:20 -0700 | [diff] [blame] | 23 | <uses-sdk android:targetSdkVersion="29" android:minSdkVersion="26"/> |
Sunny Goyal | d83a67a | 2016-05-23 21:40:53 -0700 | [diff] [blame] | 24 | <!-- |
| 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 Hamilton | 95db737 | 2010-02-11 16:25:50 -0600 | [diff] [blame] | 28 | |
Sunny Goyal | e0e0e1d | 2016-06-07 13:53:20 -0700 | [diff] [blame] | 29 | <application |
| 30 | android:backupAgent="com.android.launcher3.LauncherBackupAgent" |
| 31 | android:fullBackupOnly="true" |
| 32 | android:fullBackupContent="@xml/backupscheme" |
| 33 | android:hardwareAccelerated="true" |
Hyunyoung Song | 837eb1f | 2017-03-03 11:14:05 -0800 | [diff] [blame] | 34 | android:icon="@drawable/ic_launcher_home" |
Sunny Goyal | 4a4b49f | 2016-08-25 22:21:40 -0700 | [diff] [blame] | 35 | android:label="@string/derived_app_name" |
Sunny Goyal | bd88f39 | 2018-06-07 15:42:57 -0700 | [diff] [blame] | 36 | android:theme="@style/AppTheme" |
Sunny Goyal | e0e0e1d | 2016-06-07 13:53:20 -0700 | [diff] [blame] | 37 | android:largeHeap="@bool/config_largeHeap" |
| 38 | android:restoreAnyVersion="true" |
| 39 | android:supportsRtl="true" > |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 40 | |
Sunny Goyal | d83a67a | 2016-05-23 21:40:53 -0700 | [diff] [blame] | 41 | <!-- |
| 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 Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 45 | <activity |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 46 | android:name="com.android.launcher3.Launcher" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 47 | android:launchMode="singleTask" |
| 48 | android:clearTaskOnLaunch="true" |
| 49 | android:stateNotNeeded="true" |
Ng Zhi An | d772c0a | 2017-09-27 13:03:20 -0700 | [diff] [blame] | 50 | android:windowSoftInputMode="adjustPan" |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 51 | android:screenOrientation="unspecified" |
Alex Chau | a02eddc | 2021-04-29 00:36:06 +0100 | [diff] [blame] | 52 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize|density" |
Jon Miranda | 11f1e4c | 2017-02-27 14:32:39 -0800 | [diff] [blame] | 53 | android:resizeableActivity="true" |
Winson Chung | 761e820 | 2015-06-01 12:38:30 -0700 | [diff] [blame] | 54 | android:resumeWhilePausing="true" |
Adam Cohen | 1c52488 | 2015-06-23 18:06:37 -0700 | [diff] [blame] | 55 | android:taskAffinity="" |
Ashwini Oruganti | aa902e8 | 2020-06-04 17:47:09 -0700 | [diff] [blame] | 56 | android:exported="true" |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 57 | android:enabled="true"> |
| 58 | <intent-filter> |
| 59 | <action android:name="android.intent.action.MAIN" /> |
| 60 | <category android:name="android.intent.category.HOME" /> |
| 61 | <category android:name="android.intent.category.DEFAULT" /> |
| 62 | <category android:name="android.intent.category.MONKEY"/> |
Sunny Goyal | de78882 | 2017-08-30 14:56:54 -0700 | [diff] [blame] | 63 | <category android:name="android.intent.category.LAUNCHER_APP" /> |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 64 | </intent-filter> |
Sunny Goyal | 6dda58a | 2019-01-24 15:40:44 -0800 | [diff] [blame] | 65 | <meta-data |
| 66 | android:name="com.android.launcher3.grid.control" |
Santiago Etchebehere | 339de9d | 2019-01-29 14:15:15 -0800 | [diff] [blame] | 67 | android:value="${packageName}.grid_control" /> |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 68 | </activity> |
| 69 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 70 | </application> |
| 71 | </manifest> |