blob: 321fcc3d72fbb6348a0f7352325103ca6e619e1a [file] [log] [blame]
Sunny Goyald83a67a2016-05-23 21:40:53 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2016, 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"
Anas Karbilad748fec2017-10-14 10:50:30 +020022 package="com.android.launcher3"
23 coreApp="true"
24 android:sharedUserId="android.uid.system">
Sunny Goyald83a67a2016-05-23 21:40:53 -070025 <uses-sdk android:targetSdkVersion="23" android:minSdkVersion="21"/>
26
27 <!--
28 The manifest defines the common entries that should be present in any derivative of Launcher3.
29 The components should generally not require any changes.
30
31 Rest of the components are defined in AndroidManifest.xml which is merged with this manifest
32 at compile time. Note that the components defined in AndroidManifest.xml are also required,
33 with some minor changed based on the derivative app.
34 -->
35 <permission
36 android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
37 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
38 android:protectionLevel="dangerous"
39 android:label="@string/permlab_install_shortcut"
40 android:description="@string/permdesc_install_shortcut" />
41
42 <uses-permission android:name="android.permission.CALL_PHONE" />
43 <uses-permission android:name="android.permission.SET_WALLPAPER" />
44 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
45 <uses-permission android:name="android.permission.BIND_APPWIDGET" />
46 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
47 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Anas Karbilad748fec2017-10-14 10:50:30 +020048 <uses-permission android:name="android.permission.DEVICE_POWER" />
Sunny Goyald83a67a2016-05-23 21:40:53 -070049
50 <application
51 android:backupAgent="com.android.launcher3.LauncherBackupAgent"
52 android:fullBackupOnly="true"
53 android:fullBackupContent="@xml/backupscheme"
54 android:hardwareAccelerated="true"
Hyunyoung Song837eb1f2017-03-03 11:14:05 -080055 android:icon="@drawable/ic_launcher_home"
Sunny Goyal112ce422016-08-22 16:45:29 -070056 android:label="@string/derived_app_name"
Sunny Goyald83a67a2016-05-23 21:40:53 -070057 android:largeHeap="@bool/config_largeHeap"
58 android:restoreAnyVersion="true"
59 android:supportsRtl="true" >
60
61 <!-- Intent received used to install shortcuts from other applications -->
62 <receiver
63 android:name="com.android.launcher3.InstallShortcutReceiver"
Sunny Goyal4179e9b2017-03-08 14:25:09 -080064 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT"
65 android:enabled="@bool/enable_install_shortcut_api" >
Sunny Goyald83a67a2016-05-23 21:40:53 -070066 <intent-filter>
67 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
68 </intent-filter>
69 </receiver>
70
Sunny Goyal4179e9b2017-03-08 14:25:09 -080071 <!-- Intent received when a session is committed -->
72 <receiver
73 android:name="com.android.launcher3.SessionCommitReceiver" >
74 <intent-filter>
75 <action android:name="android.content.pm.action.SESSION_COMMITTED" />
76 </intent-filter>
77 </receiver>
78
Sunny Goyald83a67a2016-05-23 21:40:53 -070079 <!-- Intent received used to initialize a restored widget -->
80 <receiver android:name="com.android.launcher3.AppWidgetsRestoredReceiver" >
81 <intent-filter>
82 <action android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED"/>
83 </intent-filter>
84 </receiver>
85
86 <service android:name="com.android.launcher3.dynamicui.ColorExtractionService"
87 android:exported="false"
Tony629a67c2017-06-02 15:43:26 -070088 android:process=":wallpaper_chooser"
89 android:permission="android.permission.BIND_JOB_SERVICE">
Sunny Goyald83a67a2016-05-23 21:40:53 -070090 </service>
91
Sunny Goyal3e93ec52017-05-23 14:00:32 -070092 <service
93 android:name="com.android.launcher3.compat.WallpaperManagerCompatVL$ColorExtractionService"
94 android:exported="false"
Sunny Goyal82315962017-06-08 14:27:49 -070095 android:process=":wallpaper_chooser"
96 android:permission="android.permission.BIND_JOB_SERVICE" />
Sunny Goyal3e93ec52017-05-23 14:00:32 -070097
Tony4d8019a2017-02-13 07:44:01 -080098 <service android:name="com.android.launcher3.notification.NotificationListener"
99 android:enabled="@bool/notification_badging_enabled"
100 android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
101 <intent-filter>
102 <action android:name="android.service.notification.NotificationListenerService" />
103 </intent-filter>
104 </service>
105
Sunny Goyald83a67a2016-05-23 21:40:53 -0700106 <meta-data android:name="android.nfc.disable_beam_default"
107 android:value="true" />
108
Sunny Goyal27835952017-01-13 12:15:53 -0800109 <activity android:name="com.android.launcher3.dragndrop.AddItemActivity"
110 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"
Sunny Goyalb38fab72017-01-20 19:32:31 -0800111 android:excludeFromRecents="true"
112 android:autoRemoveFromRecents="true"
Sunny Goyal27835952017-01-13 12:15:53 -0800113 android:label="@string/action_add_to_workspace" >
114 <intent-filter>
Sunny Goyal8b2002e2017-01-26 14:40:10 -0800115 <action android:name="android.content.pm.action.CONFIRM_PIN_SHORTCUT" />
116 <action android:name="android.content.pm.action.CONFIRM_PIN_APPWIDGET" />
Sunny Goyal27835952017-01-13 12:15:53 -0800117 </intent-filter>
118 </activity>
119
Hyunyoung Song37fa9b42017-05-04 15:21:20 -0700120 <!--
121 Should point to the content provider which can be used to dump Launcher3 compatible
122 worspace configuration to the dump's file descriptor by using launcher_dump.proto
123 -->
124 <meta-data
125 android:name="com.android.launcher3.launcher_dump_provider"
126 android:value="com.android.launcher3.LauncherProvider" />
127
Sunny Goyald83a67a2016-05-23 21:40:53 -0700128 </application>
129</manifest>