2016-05-23 21:40:53 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
**
|
|
|
|
|
** Copyright 2016, 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.
|
2021-04-24 09:48:35 +02:00
|
|
|
**
|
|
|
|
|
** Modifications copyright 2021, Lawnchair
|
2016-05-23 21:40:53 -07:00
|
|
|
*/
|
|
|
|
|
-->
|
|
|
|
|
<manifest
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-01-12 21:15:13 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2016-05-23 21:40:53 -07:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
The manifest defines the common entries that should be present in any derivative of Launcher3.
|
|
|
|
|
The components should generally not require any changes.
|
|
|
|
|
|
|
|
|
|
Rest of the components are defined in AndroidManifest.xml which is merged with this manifest
|
|
|
|
|
at compile time. Note that the components defined in AndroidManifest.xml are also required,
|
|
|
|
|
with some minor changed based on the derivative app.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER" />
|
|
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
|
|
|
|
|
<uses-permission android:name="android.permission.BIND_APPWIDGET" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2017-09-05 13:38:07 -07:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2019-08-16 10:16:39 -07:00
|
|
|
<uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
|
2020-02-14 10:32:39 -08:00
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
2021-03-24 04:01:27 +05:30
|
|
|
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
2022-10-14 21:37:45 -03:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_RESTRICTED_SETTINGS" />
|
2023-09-21 21:54:56 +08:00
|
|
|
|
2020-11-17 15:57:38 -08:00
|
|
|
<!-- for rotating surface by arbitrary degree -->
|
2023-09-21 21:54:56 +08:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2020-11-17 15:57:38 -08:00
|
|
|
<uses-permission android:name="android.permission.ROTATE_SURFACE_FLINGER" />
|
2023-12-13 17:08:28 +08:00
|
|
|
<uses-permission android:name="android.permission.WAKEUP_SURFACE_FLINGER" />
|
2021-12-03 16:32:19 -05:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2021-10-05 14:13:08 +07:00
|
|
|
|
2018-06-27 15:47:49 -07:00
|
|
|
<!--
|
|
|
|
|
Permissions required for read/write access to the workspace data. These permission name
|
|
|
|
|
should not conflict with that defined in other apps, as such an app should embed its package
|
|
|
|
|
name in the permissions. eq com.mypackage.permission.READ_SETTINGS
|
|
|
|
|
-->
|
|
|
|
|
<permission
|
2024-04-17 23:23:38 -07:00
|
|
|
android:name="${applicationId}.permission.READ_SETTINGS"
|
2018-06-27 15:47:49 -07:00
|
|
|
android:protectionLevel="signatureOrSystem"
|
|
|
|
|
android:label="@string/permlab_read_settings"
|
|
|
|
|
android:description="@string/permdesc_read_settings"/>
|
|
|
|
|
<permission
|
2024-04-17 23:23:38 -07:00
|
|
|
android:name="${applicationId}.permission.WRITE_SETTINGS"
|
2018-06-27 15:47:49 -07:00
|
|
|
android:protectionLevel="signatureOrSystem"
|
|
|
|
|
android:label="@string/permlab_write_settings"
|
|
|
|
|
android:description="@string/permdesc_write_settings"/>
|
|
|
|
|
|
2024-04-17 23:23:38 -07:00
|
|
|
<uses-permission android:name="${applicationId}.permission.READ_SETTINGS" />
|
|
|
|
|
<uses-permission android:name="${applicationId}.permission.WRITE_SETTINGS" />
|
2018-06-27 15:47:49 -07:00
|
|
|
|
2016-05-23 21:40:53 -07:00
|
|
|
<application
|
|
|
|
|
android:backupAgent="com.android.launcher3.LauncherBackupAgent"
|
2024-09-15 08:50:28 +08:00
|
|
|
android:name="app.lawnchair.LawnchairApp"
|
2016-05-23 21:40:53 -07:00
|
|
|
android:fullBackupOnly="true"
|
2016-08-19 13:13:03 -07:00
|
|
|
android:backupInForeground="true"
|
2016-05-23 21:40:53 -07:00
|
|
|
android:fullBackupContent="@xml/backupscheme"
|
|
|
|
|
android:hardwareAccelerated="true"
|
2017-03-03 11:14:05 -08:00
|
|
|
android:icon="@drawable/ic_launcher_home"
|
2016-08-22 16:45:29 -07:00
|
|
|
android:label="@string/derived_app_name"
|
2016-05-23 21:40:53 -07:00
|
|
|
android:largeHeap="@bool/config_largeHeap"
|
|
|
|
|
android:restoreAnyVersion="true"
|
2022-05-23 10:57:50 +04:30
|
|
|
android:supportsRtl="true"
|
|
|
|
|
tools:replace="android:label">
|
2016-05-23 21:40:53 -07:00
|
|
|
|
2017-03-08 14:25:09 -08:00
|
|
|
<!-- Intent received when a session is committed -->
|
|
|
|
|
<receiver
|
2020-06-04 17:47:09 -07:00
|
|
|
android:name="com.android.launcher3.SessionCommitReceiver"
|
|
|
|
|
android:exported="true">
|
2017-03-08 14:25:09 -08:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.content.pm.action.SESSION_COMMITTED" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
2016-05-23 21:40:53 -07:00
|
|
|
<!-- Intent received used to initialize a restored widget -->
|
2020-06-04 17:47:09 -07:00
|
|
|
<receiver android:name="com.android.launcher3.AppWidgetsRestoredReceiver"
|
|
|
|
|
android:exported="true">
|
2016-05-23 21:40:53 -07:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
2018-03-01 16:10:19 -08:00
|
|
|
<service
|
|
|
|
|
android:name="com.android.launcher3.notification.NotificationListener"
|
2018-12-03 18:11:39 -08:00
|
|
|
android:label="@string/notification_dots_service_title"
|
2020-06-04 17:47:09 -07:00
|
|
|
android:exported="true"
|
2018-03-01 16:10:19 -08:00
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
|
2017-02-13 07:44:01 -08:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
|
|
|
|
|
2016-05-23 21:40:53 -07:00
|
|
|
<meta-data android:name="android.nfc.disable_beam_default"
|
|
|
|
|
android:value="true" />
|
|
|
|
|
|
2017-01-13 12:15:53 -08:00
|
|
|
<activity android:name="com.android.launcher3.dragndrop.AddItemActivity"
|
2021-05-13 14:13:18 +01:00
|
|
|
android:theme="@style/AddItemActivityTheme"
|
2017-01-20 19:32:31 -08:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
|
android:autoRemoveFromRecents="true"
|
2021-03-22 10:06:25 +00:00
|
|
|
android:exported="true">
|
2017-01-13 12:15:53 -08:00
|
|
|
<intent-filter>
|
2017-01-26 14:40:10 -08:00
|
|
|
<action android:name="android.content.pm.action.CONFIRM_PIN_SHORTCUT" />
|
|
|
|
|
<action android:name="android.content.pm.action.CONFIRM_PIN_APPWIDGET" />
|
2017-01-13 12:15:53 -08:00
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2018-06-27 15:47:49 -07:00
|
|
|
<!--
|
|
|
|
|
The settings provider contains Home's data, like the workspace favorites. The permissions
|
|
|
|
|
should be changed to what is defined above. The authorities should also be changed to
|
|
|
|
|
represent the package name.
|
|
|
|
|
-->
|
|
|
|
|
<provider
|
|
|
|
|
android:name="com.android.launcher3.LauncherProvider"
|
2024-04-17 23:23:38 -07:00
|
|
|
android:authorities="${applicationId}.settings"
|
2018-06-27 15:47:49 -07:00
|
|
|
android:exported="true"
|
2024-04-17 23:23:38 -07:00
|
|
|
android:writePermission="${applicationId}.permission.WRITE_SETTINGS"
|
|
|
|
|
android:readPermission="${applicationId}.permission.READ_SETTINGS" />
|
2018-06-27 15:47:49 -07:00
|
|
|
|
2019-01-09 17:29:49 -08:00
|
|
|
<!--
|
|
|
|
|
The content provider for exposing various launcher grid options.
|
|
|
|
|
TODO: Add proper permissions
|
2019-05-15 14:01:30 -07:00
|
|
|
-->
|
2019-01-09 17:29:49 -08:00
|
|
|
<provider
|
2021-01-27 14:05:01 -08:00
|
|
|
android:name="com.android.launcher3.graphics.GridCustomizationsProvider"
|
2024-04-17 23:23:38 -07:00
|
|
|
android:authorities="${applicationId}.grid_control"
|
2019-01-09 17:29:49 -08:00
|
|
|
android:exported="true" />
|
|
|
|
|
|
2018-06-27 15:47:49 -07:00
|
|
|
<!--
|
|
|
|
|
The settings activity. To extend point settings_fragment_name to appropriate fragment class
|
|
|
|
|
-->
|
|
|
|
|
<activity
|
2018-10-16 16:36:02 -07:00
|
|
|
android:name="com.android.launcher3.settings.SettingsActivity"
|
2018-06-27 15:47:49 -07:00
|
|
|
android:label="@string/settings_button_text"
|
2021-06-09 16:34:45 -04:00
|
|
|
android:theme="@style/HomeSettings.Theme"
|
2020-06-04 17:47:09 -07:00
|
|
|
android:exported="true"
|
2018-06-27 15:47:49 -07:00
|
|
|
android:autoRemoveFromRecents="true">
|
2021-02-28 19:46:54 +01:00
|
|
|
<intent-filter android:priority="-1">
|
2018-06-27 15:47:49 -07:00
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2019-05-23 00:50:08 -07:00
|
|
|
<provider
|
|
|
|
|
android:name="com.android.launcher3.testing.TestInformationProvider"
|
2024-04-17 23:23:38 -07:00
|
|
|
android:authorities="${applicationId}.TestInfo"
|
2019-05-23 00:50:08 -07:00
|
|
|
android:readPermission="android.permission.WRITE_SECURE_SETTINGS"
|
|
|
|
|
android:writePermission="android.permission.WRITE_SECURE_SETTINGS"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:enabled="false" />
|
2020-01-07 13:07:55 -08:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Launcher activity for secondary display
|
|
|
|
|
-->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.android.launcher3.secondarydisplay.SecondaryDisplayLauncher"
|
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
|
android:launchMode="singleTop"
|
2020-06-04 17:47:09 -07:00
|
|
|
android:exported="true"
|
2020-01-07 13:07:55 -08:00
|
|
|
android:enabled="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.SECONDARY_HOME" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2021-08-25 22:06:47 +00:00
|
|
|
|
2024-05-10 12:27:39 -07:00
|
|
|
<!-- Disable eager initialization of Jetpack libraries. See bug 197780098. -->
|
2021-08-25 22:06:47 +00:00
|
|
|
<provider
|
|
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
|
|
|
tools:node="remove" />
|
2023-10-10 10:50:28 -07:00
|
|
|
|
|
|
|
|
<property
|
|
|
|
|
android:name="android.window.PROPERTY_ACTIVITY_EMBEDDING_SPLITS_ENABLED"
|
|
|
|
|
android:value="true" />
|
2016-05-23 21:40:53 -07:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|