blob: f43106f184b44ef3af71614c9f1828b9451b6c66 [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">
Kenny Guyd794a3f2014-09-16 15:17:58 +010023 <uses-sdk android:targetSdkVersion="21" 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" />
Michael Jurka974c3862012-05-22 22:00:31 -070056 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
John Spurlock2c38e702013-09-18 10:48:25 -040057 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Sunny Goyalf599ccf2014-07-08 13:01:29 -070058 <uses-permission android:name="android.permission.BROADCAST_STICKY"/>
59 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Adam Cohene25af792013-06-06 23:08:25 -070060 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
61 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Daniel Sandler325dc232013-06-05 22:57:57 -040062 <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
63 <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
Daniel Sandlerff02d492013-08-05 02:12:05 -040064 <uses-permission android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS" />
Adam Cohena388a142014-07-31 09:45:58 -070065 <uses-permission android:name="com.android.launcher3.permission.RECEIVE_FIRST_LOAD_BROADCAST" />
Adam Cohen76fc0852011-06-17 13:26:23 -070066
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067 <application
Daniel Sandler325dc232013-06-05 22:57:57 -040068 android:name="com.android.launcher3.LauncherApplication"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070069 android:allowBackup="@bool/enable_backup"
70 android:backupAgent="com.android.launcher3.LauncherBackupAgentHelper"
Michael Jurka14c5a2c2012-06-28 13:45:33 -070071 android:hardwareAccelerated="true"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070072 android:icon="@mipmap/ic_launcher_home"
73 android:label="@string/application_name"
Fabrice Di Meglio369dd0c2012-09-24 17:30:22 -070074 android:largeHeap="@bool/config_largeHeap"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070075 android:restoreAnyVersion="true"
76 android:supportsRtl="true" >
77
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040079 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 android:launchMode="singleTask"
81 android:clearTaskOnLaunch="true"
82 android:stateNotNeeded="true"
Adam Cohen81e2b9b2011-06-27 18:59:37 -070083 android:theme="@style/Theme"
Adam Cohen446e9402011-09-15 18:21:21 -070084 android:windowSoftInputMode="adjustPan"
Adam Cohenc2d6e892014-10-16 09:49:24 -070085 android:screenOrientation="nosensor"
86 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
95 <activity
96 android:name="com.android.launcher3.LauncherExtension"
97 android:launchMode="singleTask"
98 android:clearTaskOnLaunch="true"
99 android:stateNotNeeded="true"
100 android:theme="@style/Theme"
101 android:windowSoftInputMode="adjustPan"
102 android:screenOrientation="nosensor"
103 android:enabled="false">
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800104 <intent-filter>
105 <action android:name="android.intent.action.MAIN" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -0700106 <category android:name="android.intent.category.HOME" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800107 <category android:name="android.intent.category.DEFAULT" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -0700108 <category android:name="android.intent.category.MONKEY"/>
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109 </intent-filter>
110 </activity>
111
112 <activity
Adam Cohen39a06042013-07-19 14:30:12 -0700113 android:name="com.android.launcher3.ToggleWeightWatcher"
114 android:label="@string/toggle_weight_watcher"
Daniel Sandler826420b2013-08-23 00:45:46 -0400115 android:enabled="@bool/debug_memory_enabled"
Adam Cohen39a06042013-07-19 14:30:12 -0700116 android:icon="@mipmap/ic_launcher_home">
117 <intent-filter>
118 <action android:name="android.intent.action.MAIN" />
119 <category android:name="android.intent.category.DEFAULT" />
120 <category android:name="android.intent.category.LAUNCHER" />
121 </intent-filter>
122 </activity>
123
124 <activity
Sunny Goyal6a1e95a2015-03-20 17:26:30 -0700125 android:name="com.android.launcher3.WallpaperPickerActivity"
Selim Cinekffed6582014-02-28 17:18:59 +0100126 android:theme="@style/Theme.WallpaperPicker"
Michael Jurka104c4562013-07-08 18:03:46 -0700127 android:label="@string/pick_wallpaper"
128 android:icon="@mipmap/ic_launcher_wallpaper"
129 android:finishOnCloseSystemDialogs="true"
130 android:process=":wallpaper_chooser">
131 <intent-filter>
Michael Jurkaadc574c2013-09-12 00:05:02 +0200132 <action android:name="android.intent.action.SET_WALLPAPER" />
Michael Jurka104c4562013-07-08 18:03:46 -0700133 <category android:name="android.intent.category.DEFAULT" />
134 </intent-filter>
Michael Jurka104c4562013-07-08 18:03:46 -0700135 </activity>
136
Michael Jurka2d8de582013-09-04 14:42:52 +0200137 <activity
138 android:name="com.android.launcher3.WallpaperCropActivity"
Michael Jurkaadc574c2013-09-12 00:05:02 +0200139 android:theme="@style/Theme.WallpaperCropper"
140 android:label="@string/crop_wallpaper"
Michael Jurka2d8de582013-09-04 14:42:52 +0200141 android:icon="@mipmap/ic_launcher_wallpaper"
142 android:finishOnCloseSystemDialogs="true"
143 android:process=":wallpaper_chooser">
144 <intent-filter>
Michael Jurkaadc574c2013-09-12 00:05:02 +0200145 <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
Michael Jurka2d8de582013-09-04 14:42:52 +0200146 <category android:name="android.intent.category.DEFAULT" />
Michael Jurkaadc574c2013-09-12 00:05:02 +0200147 <data android:mimeType="image/*" />
Michael Jurka2d8de582013-09-04 14:42:52 +0200148 </intent-filter>
149 </activity>
Michael Jurka104c4562013-07-08 18:03:46 -0700150
Daniel Sandlera127b7a2013-06-17 14:25:46 -0400151 <!-- Debugging tools -->
152 <activity
153 android:name="com.android.launcher3.MemoryDumpActivity"
154 android:theme="@android:style/Theme.NoDisplay"
155 android:label="@string/debug_memory_activity"
156 android:enabled="@bool/debug_memory_enabled"
Daniel Sandler8540bb82013-06-26 01:39:02 -0400157 android:excludeFromRecents="true"
158 android:icon="@mipmap/ic_launcher_home"
Daniel Sandlera127b7a2013-06-17 14:25:46 -0400159 >
160 <intent-filter>
161 <action android:name="android.intent.action.MAIN" />
162 <category android:name="android.intent.category.DEFAULT" />
163 <category android:name="android.intent.category.LAUNCHER" />
164 </intent-filter>
165 </activity>
166
Daniel Sandlerb9eb2862013-06-14 20:17:30 -0400167 <service android:name="com.android.launcher3.MemoryTracker"
168 android:enabled="@bool/debug_memory_enabled"
169 >
170 </service>
171
Michael Jurkaa6a05472013-11-13 17:59:46 +0100172 <receiver
173 android:name="com.android.launcher3.WallpaperChangedReceiver">
174 <intent-filter>
175 <action android:name="android.intent.action.WALLPAPER_CHANGED" />
176 </intent-filter>
177 </receiver>
178
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 <!-- Intent received used to install shortcuts from other applications -->
180 <receiver
Daniel Sandler325dc232013-06-05 22:57:57 -0400181 android:name="com.android.launcher3.InstallShortcutReceiver"
Sunny Goyal9b8da882014-09-05 04:40:13 -0700182 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 <intent-filter>
Sunny Goyal9b8da882014-09-05 04:40:13 -0700184 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 </intent-filter>
186 </receiver>
187
Sunny Goyal651077b2014-06-30 14:15:31 -0700188 <!-- Intent received used to initialize a restored widget -->
189 <receiver android:name="com.android.launcher3.AppWidgetsRestoredReceiver" >
190 <intent-filter>
191 <action android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED"/>
192 </intent-filter>
193 </receiver>
194
Dianne Hackborn804503c2012-09-16 00:00:27 -0700195 <!-- New user initialization; set up initial wallpaper -->
196 <receiver
Daniel Sandler325dc232013-06-05 22:57:57 -0400197 android:name="com.android.launcher3.UserInitializeReceiver"
Dianne Hackborn804503c2012-09-16 00:00:27 -0700198 android:exported="false">
199 <intent-filter>
200 <action android:name="android.intent.action.USER_INITIALIZE" />
201 </intent-filter>
202 </receiver>
Michael Jurka05713af2013-01-23 12:39:24 +0100203
Sunny Goyalf599ccf2014-07-08 13:01:29 -0700204 <receiver android:name="com.android.launcher3.StartupReceiver" >
205 <intent-filter>
206 <action android:name="android.intent.action.BOOT_COMPLETED" />
207 </intent-filter>
208 </receiver>
209
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210 <!-- The settings provider contains Home's data, like the workspace favorites -->
211 <provider
Daniel Sandler325dc232013-06-05 22:57:57 -0400212 android:name="com.android.launcher3.LauncherProvider"
213 android:authorities="com.android.launcher3.settings"
Nick Kralevichebe65592012-07-28 16:11:07 -0700214 android:exported="true"
Daniel Sandler325dc232013-06-05 22:57:57 -0400215 android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
216 android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217
Martijn Coenenb34811d2012-04-19 09:38:20 -0700218 <meta-data android:name="android.nfc.disable_beam_default"
219 android:value="true" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800220 </application>
221</manifest>