2009-03-04 11:32:27 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
/*
|
|
|
|
**
|
|
|
|
** Copyright 2008, The Android Open Source Project
|
|
|
|
**
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-06-06 10:57:57 +08:00
|
|
|
package="com.android.launcher3">
|
2020-07-30 07:54:20 +08:00
|
|
|
<uses-sdk android:targetSdkVersion="29" android:minSdkVersion="26"/>
|
2016-05-24 12:40:53 +08:00
|
|
|
<!--
|
|
|
|
Manifest entries specific to Launcher3. This is merged with AndroidManifest-common.xml.
|
|
|
|
Refer comments around specific entries on how to extend individual components.
|
|
|
|
-->
|
2010-02-12 06:25:50 +08:00
|
|
|
|
2016-06-08 04:53:20 +08:00
|
|
|
<application
|
|
|
|
android:backupAgent="com.android.launcher3.LauncherBackupAgent"
|
|
|
|
android:fullBackupOnly="true"
|
|
|
|
android:fullBackupContent="@xml/backupscheme"
|
|
|
|
android:hardwareAccelerated="true"
|
2021-07-30 06:48:24 +08:00
|
|
|
android:debuggable="true"
|
2017-03-04 03:14:05 +08:00
|
|
|
android:icon="@drawable/ic_launcher_home"
|
2016-08-26 13:21:40 +08:00
|
|
|
android:label="@string/derived_app_name"
|
2018-06-08 06:42:57 +08:00
|
|
|
android:theme="@style/AppTheme"
|
2016-06-08 04:53:20 +08:00
|
|
|
android:largeHeap="@bool/config_largeHeap"
|
|
|
|
android:restoreAnyVersion="true"
|
|
|
|
android:supportsRtl="true" >
|
2014-08-12 08:05:23 +08:00
|
|
|
|
2016-05-24 12:40:53 +08:00
|
|
|
<!--
|
|
|
|
Main launcher activity. When extending only change the name, and keep all the
|
|
|
|
attributes and intent filters the same
|
|
|
|
-->
|
2009-03-04 11:32:27 +08:00
|
|
|
<activity
|
2013-06-06 10:57:57 +08:00
|
|
|
android:name="com.android.launcher3.Launcher"
|
2009-03-04 11:32:27 +08:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:clearTaskOnLaunch="true"
|
|
|
|
android:stateNotNeeded="true"
|
2017-09-28 04:03:20 +08:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
2018-03-03 04:24:41 +08:00
|
|
|
android:screenOrientation="unspecified"
|
2021-11-04 01:07:16 +08:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
|
2017-02-28 06:32:39 +08:00
|
|
|
android:resizeableActivity="true"
|
2015-06-02 03:38:30 +08:00
|
|
|
android:resumeWhilePausing="true"
|
2015-06-24 09:06:37 +08:00
|
|
|
android:taskAffinity=""
|
2020-06-05 08:47:09 +08:00
|
|
|
android:exported="true"
|
2014-10-17 00:49:24 +08:00
|
|
|
android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.MONKEY"/>
|
2017-08-31 05:56:54 +08:00
|
|
|
<category android:name="android.intent.category.LAUNCHER_APP" />
|
2014-10-17 00:49:24 +08:00
|
|
|
</intent-filter>
|
2019-01-25 07:40:44 +08:00
|
|
|
<meta-data
|
|
|
|
android:name="com.android.launcher3.grid.control"
|
2019-01-30 06:15:15 +08:00
|
|
|
android:value="${packageName}.grid_control" />
|
2014-10-17 00:49:24 +08:00
|
|
|
</activity>
|
|
|
|
|
2009-03-04 11:32:27 +08:00
|
|
|
</application>
|
|
|
|
</manifest>
|