2009-03-04 03:32:27 +00: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 02:57:57 +00:00
|
|
|
package="com.android.launcher3">
|
2022-04-15 04:21:47 +00:00
|
|
|
<uses-sdk android:targetSdkVersion="33" android:minSdkVersion="26"/>
|
2016-05-24 04:40:53 +00: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-11 22:25:50 +00:00
|
|
|
|
2016-06-07 20:53:20 +00:00
|
|
|
<application
|
|
|
|
android:backupAgent="com.android.launcher3.LauncherBackupAgent"
|
|
|
|
android:fullBackupOnly="true"
|
|
|
|
android:fullBackupContent="@xml/backupscheme"
|
|
|
|
android:hardwareAccelerated="true"
|
2021-07-29 22:48:24 +00:00
|
|
|
android:debuggable="true"
|
2017-03-03 19:14:05 +00:00
|
|
|
android:icon="@drawable/ic_launcher_home"
|
2016-08-26 05:21:40 +00:00
|
|
|
android:label="@string/derived_app_name"
|
2018-06-07 22:42:57 +00:00
|
|
|
android:theme="@style/AppTheme"
|
2016-06-07 20:53:20 +00:00
|
|
|
android:largeHeap="@bool/config_largeHeap"
|
|
|
|
android:restoreAnyVersion="true"
|
|
|
|
android:supportsRtl="true" >
|
2014-08-12 00:05:23 +00:00
|
|
|
|
2016-05-24 04:40:53 +00:00
|
|
|
<!--
|
|
|
|
Main launcher activity. When extending only change the name, and keep all the
|
|
|
|
attributes and intent filters the same
|
|
|
|
-->
|
2009-03-04 03:32:27 +00:00
|
|
|
<activity
|
2013-06-06 02:57:57 +00:00
|
|
|
android:name="com.android.launcher3.Launcher"
|
2009-03-04 03:32:27 +00:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:clearTaskOnLaunch="true"
|
|
|
|
android:stateNotNeeded="true"
|
2017-09-27 20:03:20 +00:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
2018-03-02 20:24:41 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2021-11-03 17:07:16 +00:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
|
2017-02-27 22:32:39 +00:00
|
|
|
android:resizeableActivity="true"
|
2015-06-01 19:38:30 +00:00
|
|
|
android:resumeWhilePausing="true"
|
2015-06-24 01:06:37 +00:00
|
|
|
android:taskAffinity=""
|
2020-06-05 00:47:09 +00:00
|
|
|
android:exported="true"
|
2014-10-16 16:49:24 +00:00
|
|
|
android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2022-02-03 15:44:25 +00:00
|
|
|
<action android:name="android.intent.action.SHOW_WORK_APPS" />
|
2014-10-16 16:49:24 +00:00
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.MONKEY"/>
|
2017-08-30 21:56:54 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER_APP" />
|
2014-10-16 16:49:24 +00:00
|
|
|
</intent-filter>
|
2019-01-24 23:40:44 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.android.launcher3.grid.control"
|
2019-01-29 22:15:15 +00:00
|
|
|
android:value="${packageName}.grid_control" />
|
2014-10-16 16:49:24 +00:00
|
|
|
</activity>
|
|
|
|
|
2009-03-04 03:32:27 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|