blob: b0b1e95cca613c2b3a29fb01f0ad64cba7bda46c [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?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 Sandler325dc232013-06-05 22:57:57 -040022 package="com.android.launcher3">
Sunny Goyal830b5e02015-08-21 09:26:10 -070023 <uses-sdk android:targetSdkVersion="23" android:minSdkVersion="16"/>
Jeff Hamilton95db7372010-02-11 16:25:50 -060024
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025 <permission
Winson Chung94d67682013-09-25 16:29:40 -070026 android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Nick Kralevich33650302012-08-07 10:21:13 -070028 android:protectionLevel="dangerous"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029 android:label="@string/permlab_install_shortcut"
30 android:description="@string/permdesc_install_shortcut" />
31 <permission
Daniel Sandler325dc232013-06-05 22:57:57 -040032 android:name="com.android.launcher3.permission.READ_SETTINGS"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
34 android:protectionLevel="normal"
35 android:label="@string/permlab_read_settings"
36 android:description="@string/permdesc_read_settings"/>
37 <permission
Daniel Sandler325dc232013-06-05 22:57:57 -040038 android:name="com.android.launcher3.permission.WRITE_SETTINGS"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Winson Chungc66109c2014-02-26 11:50:46 -080040 android:protectionLevel="signatureOrSystem"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041 android:label="@string/permlab_write_settings"
42 android:description="@string/permdesc_write_settings"/>
Daniel Sandlerff02d492013-08-05 02:12:05 -040043 <permission
44 android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS"
45 android:protectionLevel="signature"
46 />
Adam Cohen3ed316a2014-07-23 18:21:20 -070047 <permission
48 android:name="com.android.launcher3.permission.RECEIVE_FIRST_LOAD_BROADCAST"
49 android:protectionLevel="signatureOrSystem" />
Daniel Sandlerff02d492013-08-05 02:12:05 -040050
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051 <uses-permission android:name="android.permission.CALL_PHONE" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080052 <uses-permission android:name="android.permission.SET_WALLPAPER" />
53 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
54 <uses-permission android:name="android.permission.VIBRATE" />
Jeff Sharkey6d3bfe52009-05-07 16:12:05 -070055 <uses-permission android:name="android.permission.BIND_APPWIDGET" />
John Spurlock2c38e702013-09-18 10:48:25 -040056 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Sunny Goyalf599ccf2014-07-08 13:01:29 -070057 <uses-permission android:name="android.permission.BROADCAST_STICKY"/>
58 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Adam Cohene25af792013-06-06 23:08:25 -070059 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
60 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Daniel Sandler325dc232013-06-05 22:57:57 -040061 <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
62 <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
Daniel Sandlerff02d492013-08-05 02:12:05 -040063 <uses-permission android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS" />
Adam Cohena388a142014-07-31 09:45:58 -070064 <uses-permission android:name="com.android.launcher3.permission.RECEIVE_FIRST_LOAD_BROADCAST" />
Adam Cohen76fc0852011-06-17 13:26:23 -070065
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066 <application
Sunny Goyal0fc1be12014-08-11 17:05:23 -070067 android:allowBackup="@bool/enable_backup"
68 android:backupAgent="com.android.launcher3.LauncherBackupAgentHelper"
Michael Jurka14c5a2c2012-06-28 13:45:33 -070069 android:hardwareAccelerated="true"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070070 android:icon="@mipmap/ic_launcher_home"
71 android:label="@string/application_name"
Fabrice Di Meglio369dd0c2012-09-24 17:30:22 -070072 android:largeHeap="@bool/config_largeHeap"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070073 android:restoreAnyVersion="true"
74 android:supportsRtl="true" >
75
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040077 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 android:launchMode="singleTask"
79 android:clearTaskOnLaunch="true"
80 android:stateNotNeeded="true"
Adam Cohen81e2b9b2011-06-27 18:59:37 -070081 android:theme="@style/Theme"
Adam Cohen446e9402011-09-15 18:21:21 -070082 android:windowSoftInputMode="adjustPan"
Adam Cohenc2d6e892014-10-16 09:49:24 -070083 android:screenOrientation="nosensor"
Winson Chung761e8202015-06-01 12:38:30 -070084 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070085 android:taskAffinity=""
Adam Cohenc2d6e892014-10-16 09:49:24 -070086 android:enabled="true">
87 <intent-filter>
88 <action android:name="android.intent.action.MAIN" />
89 <category android:name="android.intent.category.HOME" />
90 <category android:name="android.intent.category.DEFAULT" />
91 <category android:name="android.intent.category.MONKEY"/>
92 </intent-filter>
93 </activity>
94
Adam Cohen39a06042013-07-19 14:30:12 -070095 <activity
Sunny Goyal6a1e95a2015-03-20 17:26:30 -070096 android:name="com.android.launcher3.WallpaperPickerActivity"
Selim Cinekffed6582014-02-28 17:18:59 +010097 android:theme="@style/Theme.WallpaperPicker"
Michael Jurka104c4562013-07-08 18:03:46 -070098 android:label="@string/pick_wallpaper"
99 android:icon="@mipmap/ic_launcher_wallpaper"
100 android:finishOnCloseSystemDialogs="true"
101 android:process=":wallpaper_chooser">
102 <intent-filter>
Michael Jurkaadc574c2013-09-12 00:05:02 +0200103 <action android:name="android.intent.action.SET_WALLPAPER" />
Michael Jurka104c4562013-07-08 18:03:46 -0700104 <category android:name="android.intent.category.DEFAULT" />
105 </intent-filter>
Michael Jurka104c4562013-07-08 18:03:46 -0700106 </activity>
107
Michael Jurka2d8de582013-09-04 14:42:52 +0200108 <activity
109 android:name="com.android.launcher3.WallpaperCropActivity"
Michael Jurkaadc574c2013-09-12 00:05:02 +0200110 android:theme="@style/Theme.WallpaperCropper"
111 android:label="@string/crop_wallpaper"
Michael Jurka2d8de582013-09-04 14:42:52 +0200112 android:icon="@mipmap/ic_launcher_wallpaper"
113 android:finishOnCloseSystemDialogs="true"
114 android:process=":wallpaper_chooser">
115 <intent-filter>
Michael Jurkaadc574c2013-09-12 00:05:02 +0200116 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
Michael Jurka2d8de582013-09-04 14:42:52 +0200117 <category android:name="android.intent.category.DEFAULT" />
Michael Jurkaadc574c2013-09-12 00:05:02 +0200118 <data android:mimeType="image/*" />
Michael Jurka2d8de582013-09-04 14:42:52 +0200119 </intent-filter>
120 </activity>
Michael Jurka104c4562013-07-08 18:03:46 -0700121
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700122 <activity
123 android:name="com.android.launcher3.SettingsActivity"
124 android:label="@string/settings_button_text"
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400125 android:autoRemoveFromRecents="true"
126 android:process=":settings_process">
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700127 </activity>
128
Michael Jurkaa6a05472013-11-13 17:59:46 +0100129 <receiver
130 android:name="com.android.launcher3.WallpaperChangedReceiver">
131 <intent-filter>
132 <action android:name="android.intent.action.WALLPAPER_CHANGED" />
133 </intent-filter>
134 </receiver>
135
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136 <!-- Intent received used to install shortcuts from other applications -->
137 <receiver
Daniel Sandler325dc232013-06-05 22:57:57 -0400138 android:name="com.android.launcher3.InstallShortcutReceiver"
Sunny Goyal9b8da882014-09-05 04:40:13 -0700139 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140 <intent-filter>
Sunny Goyal9b8da882014-09-05 04:40:13 -0700141 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142 </intent-filter>
143 </receiver>
144
Sunny Goyal651077b2014-06-30 14:15:31 -0700145 <!-- Intent received used to initialize a restored widget -->
146 <receiver android:name="com.android.launcher3.AppWidgetsRestoredReceiver" >
147 <intent-filter>
148 <action android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED"/>
149 </intent-filter>
150 </receiver>
151
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700152 <receiver android:name="com.android.launcher3.StartupReceiver" >
153 <intent-filter>
154 <action android:name="android.intent.action.BOOT_COMPLETED" />
155 </intent-filter>
156 </receiver>
157
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 <!-- The settings provider contains Home's data, like the workspace favorites -->
159 <provider
Daniel Sandler325dc232013-06-05 22:57:57 -0400160 android:name="com.android.launcher3.LauncherProvider"
161 android:authorities="com.android.launcher3.settings"
Nick Kralevichebe65592012-07-28 16:11:07 -0700162 android:exported="true"
Daniel Sandler325dc232013-06-05 22:57:57 -0400163 android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
164 android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165
Martijn Coenenb34811d2012-04-19 09:38:20 -0700166 <meta-data android:name="android.nfc.disable_beam_default"
167 android:value="true" />
Sunny Goyald3060552015-06-25 19:35:49 -0700168
169 <!-- ENABLE_FOR_TESTING
170
171 <activity
172 android:name="com.android.launcher3.testing.LauncherExtension"
173 android:launchMode="singleTask"
174 android:clearTaskOnLaunch="true"
175 android:stateNotNeeded="true"
176 android:theme="@style/Theme"
177 android:windowSoftInputMode="adjustPan"
178 android:screenOrientation="nosensor"
179 >
180 <intent-filter>
181 <action android:name="android.intent.action.MAIN" />
182 <category android:name="android.intent.category.HOME" />
183 <category android:name="android.intent.category.DEFAULT" />
184 <category android:name="android.intent.category.MONKEY"/>
185 </intent-filter>
186 </activity>
187
188 <activity
189 android:name="com.android.launcher3.testing.MemoryDumpActivity"
190 android:theme="@android:style/Theme.NoDisplay"
191 android:label="* HPROF"
192 android:excludeFromRecents="true"
193 android:icon="@mipmap/ic_launcher_home"
194 >
195 <intent-filter>
196 <action android:name="android.intent.action.MAIN" />
197 <category android:name="android.intent.category.DEFAULT" />
198 <category android:name="android.intent.category.LAUNCHER" />
199 </intent-filter>
200 </activity>
201
202 <activity
203 android:name="com.android.launcher3.testing.ToggleWeightWatcher"
204 android:label="Show Mem"
205 android:icon="@mipmap/ic_launcher_home">
206 <intent-filter>
207 <action android:name="android.intent.action.MAIN" />
208 <category android:name="android.intent.category.DEFAULT" />
209 <category android:name="android.intent.category.LAUNCHER" />
210 </intent-filter>
211 </activity>
212
213 <service android:name="com.android.launcher3.testing.MemoryTracker" />
214
215 -->
216
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217 </application>
218</manifest>