blob: 1b62f02c2162901b51709718ece12ac7f5bf13ea [file] [log] [blame]
The Android Open Source Project96c5af42009-03-03 19:32:22 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Makoto Onukid6a29782010-07-21 14:29:49 -07007
The Android Open Source Project96c5af42009-03-03 19:32:22 -08008 http://www.apache.org/licenses/LICENSE-2.0
Makoto Onukid6a29782010-07-21 14:29:49 -07009
The Android Open Source Project96c5af42009-03-03 19:32:22 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Marc Blank1b9337e2010-09-23 09:19:44 -070017<manifest
18 xmlns:android="http://schemas.android.com/apk/res/android"
Andy Stadlerd2fcefc2010-12-15 17:49:07 -080019 package="com.android.email"
Andy Stadlerbdf02722011-03-10 14:37:33 -080020 android:versionCode="310000"
21 android:versionName="3.1"
Andy Stadlerd2fcefc2010-12-15 17:49:07 -080022 >
Jeff Hamilton1e56db62010-02-11 16:25:49 -060023
Marc Blank1b9337e2010-09-23 09:19:44 -070024 <original-package
25 android:name="com.android.email" />
Jeff Hamilton1e56db62010-02-11 16:25:49 -060026
Marc Blank1b9337e2010-09-23 09:19:44 -070027 <uses-permission
28 android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
29 <uses-permission
30 android:name="android.permission.READ_CONTACTS"/>
31 <uses-permission
32 android:name="android.permission.READ_OWNER_DATA"/>
33 <uses-permission
34 android:name="android.permission.ACCESS_NETWORK_STATE"/>
35 <uses-permission
36 android:name="android.permission.INTERNET"/>
37 <uses-permission
38 android:name="android.permission.VIBRATE"/>
39 <uses-permission
40 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
41 <uses-permission
42 android:name="android.permission.GET_ACCOUNTS" />
43 <uses-permission
44 android:name="android.permission.MANAGE_ACCOUNTS" />
45 <uses-permission
46 android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
47 <uses-permission
48 android:name="android.permission.READ_SYNC_SETTINGS" />
49 <uses-permission
50 android:name="android.permission.WRITE_SYNC_SETTINGS" />
Fred Quintana4c195432009-08-17 13:05:44 -070051
Marc Blank1b9337e2010-09-23 09:19:44 -070052 <uses-permission
53 android:name="android.permission.WRITE_CONTACTS"/>
54 <uses-permission
Marc Blankdc78a762011-02-14 14:39:27 -080055 android:name="android.permission.READ_CONTACTS"/>
Marc Blankb6493a02009-07-05 12:54:49 -070056
Andy Stadlerdab90a72009-05-06 17:50:29 -070057 <!-- Only required if a store implements push mail and needs to keep network open -->
Marc Blank1b9337e2010-09-23 09:19:44 -070058 <uses-permission
59 android:name="android.permission.WAKE_LOCK"/>
60 <uses-permission
61 android:name="android.permission.READ_PHONE_STATE"/>
Andrew Stadler22722202009-09-20 17:23:59 -070062
63 <!-- Grant permission to other apps to view attachments -->
Marc Blank1b9337e2010-09-23 09:19:44 -070064 <permission
65 android:name="com.android.email.permission.READ_ATTACHMENT"
66 android:permissionGroup="android.permission-group.MESSAGES"
67 android:protectionLevel="dangerous"
Todd Kennedy3d81e232011-05-05 10:50:10 -070068 android:label="@string/permission_read_attachment_label"
69 android:description="@string/permission_read_attachment_desc"/>
Marc Blank1b9337e2010-09-23 09:19:44 -070070 <uses-permission
71 android:name="com.android.email.permission.READ_ATTACHMENT"/>
Andrew Stadler22722202009-09-20 17:23:59 -070072
73 <!-- Grant permission to system apps to access provider (see provider below) -->
Marc Blank1b9337e2010-09-23 09:19:44 -070074 <permission
75 android:name="com.android.email.permission.ACCESS_PROVIDER"
Marc Blankdc78a762011-02-14 14:39:27 -080076 android:protectionLevel="signature"
Marc Blank1b9337e2010-09-23 09:19:44 -070077 android:label="@string/permission_access_provider_label"
78 android:description="@string/permission_access_provider_desc"/>
79 <uses-permission
80 android:name="com.android.email.permission.ACCESS_PROVIDER"/>
Andrew Stadler22722202009-09-20 17:23:59 -070081
Andy Stadlerc540b572011-01-26 22:53:08 -080082 <!-- Note: Actually, android:hardwareAccelerated could be "true", but in order to switch it
83 on/off in the debug screen, we have to set it "false" here and enable it at runtime. -->
Andy Stadler5c4c0ab2010-11-23 12:06:44 -080084 <application
Justin Hob5b8e562011-01-29 13:44:03 -080085 android:icon="@mipmap/ic_launcher_email"
Andy Stadler5c4c0ab2010-11-23 12:06:44 -080086 android:label="@string/app_name"
Makoto Onuki5d1e32a2010-08-24 13:29:00 -070087 android:name="Email"
Makoto Onukib43c9912010-11-15 12:01:45 -080088 android:theme="@android:style/Theme.Holo.Light"
Makoto Onuki3aca79f2010-11-01 15:37:14 -070089 android:hardwareAccelerated="false"
Makoto Onuki5d1e32a2010-08-24 13:29:00 -070090 >
Andrew Stadler842ac042010-02-10 23:17:55 -080091 <activity
Makoto Onuki191448b2010-08-04 15:38:25 -070092 android:name=".activity.Welcome"
Makoto Onukid6a29782010-07-21 14:29:49 -070093 >
94 <intent-filter>
Makoto Onuki308ce922011-03-21 17:08:16 -070095 <action android:name="android.intent.action.MAIN" />
96 <category android:name="android.intent.category.DEFAULT" />
97 <category android:name="android.intent.category.LAUNCHER" />
98 </intent-filter>
99 <intent-filter>
100 <action android:name="android.intent.action.VIEW" />
101 <action android:name="android.intent.action.MAIN" />
102 <category android:name="android.intent.category.DEFAULT" />
103 <category android:name="android.intent.category.LAUNCHER" />
104 <data
105 android:scheme="content"
106 android:host="ui.email.android.com"
107 android:path="/view/mailbox"
108 />
Makoto Onukid6a29782010-07-21 14:29:49 -0700109 </intent-filter>
110 </activity>
Marc Blank78684cc2011-03-31 13:29:23 -0700111
Marc Blank06275c42009-08-05 21:48:15 -0700112 <!-- Must be exported in order for the AccountManager to launch it -->
Andy Stadlerd685b462010-12-04 22:53:59 -0800113 <!-- Also available for continuous test systems to force account creation -->
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800114 <activity
115 android:name=".activity.setup.AccountSetupBasics"
116 android:label="@string/account_setup_basics_title"
Marc Blank06275c42009-08-05 21:48:15 -0700117 android:exported="true"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800118 >
Andy Stadlerd685b462010-12-04 22:53:59 -0800119 <intent-filter>
120 <action
121 android:name="com.android.email.CREATE_ACCOUNT" />
122 <category
123 android:name="android.intent.category.DEFAULT" />
124 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800125 </activity>
126 <activity
127 android:name=".activity.setup.AccountSetupAccountType"
128 android:label="@string/account_setup_account_type_title"
129 >
130 </activity>
131 <activity
132 android:name=".activity.setup.AccountSetupIncoming"
133 android:label="@string/account_setup_incoming_title"
134 >
135 </activity>
136 <activity
137 android:name=".activity.setup.AccountSetupOutgoing"
138 android:label="@string/account_setup_outgoing_title"
139 >
140 </activity>
141 <activity
Andy Stadler87c43ca2009-04-03 16:02:55 -0700142 android:name=".activity.setup.AccountSetupExchange"
143 android:label="@string/account_setup_exchange_title"
144 >
145 </activity>
146 <activity
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800147 android:name=".activity.setup.AccountSetupOptions"
148 android:label="@string/account_setup_options_title"
149 >
150 </activity>
151 <activity
152 android:name=".activity.setup.AccountSetupNames"
153 android:label="@string/account_setup_names_title"
154 >
155 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800156 <activity
Andrew Stadler9c65c142010-09-01 21:17:53 -0700157 android:name=".activity.setup.AccountSettingsXL"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800158 android:label="@string/account_settings_action"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800159 >
Makoto Onuki0fef1f12010-02-16 14:04:25 -0800160 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700161 <action
162 android:name="com.android.email.activity.setup.ACCOUNT_MANAGER_ENTRY" />
163 <category
164 android:name="android.intent.category.DEFAULT" />
Makoto Onuki0fef1f12010-02-16 14:04:25 -0800165 </intent-filter>
Makoto Onuki308ce922011-03-21 17:08:16 -0700166 <intent-filter>
167 <action android:name="android.intent.action.EDIT" />
168 <category android:name="android.intent.category.DEFAULT" />
169 <data
170 android:scheme="content"
171 android:host="ui.email.android.com"
172 android:path="/settings"
173 />
174 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800175 </activity>
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800176 <activity
177 android:name=".activity.setup.AccountSecurity"
178 android.label="@string/account_security_title"
179 >
180 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800181
182 <activity
Andrew Stadler72dce732009-07-09 12:33:09 -0700183 android:name=".activity.AccountFolderList"
Andrew Stadler0d6ce632010-06-28 16:00:25 -0700184 android:launchMode="singleTop"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700185 >
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800186 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700187
188 <activity
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800189 android:name=".activity.AccountShortcutPicker"
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800190 android:label="@string/account_shortcut_picker_title"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800191 android:enabled="false"
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800192 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800193 >
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800194 <intent-filter
Marc Blank1b9337e2010-09-23 09:19:44 -0700195 android:label="@string/account_shortcut_picker_name">
196 <action
197 android:name="android.intent.action.CREATE_SHORTCUT" />
198 <category
199 android:name="android.intent.category.DEFAULT" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800200 </intent-filter>
201 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700202
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800203 <activity
Mihai Predab0528852010-02-10 16:46:41 +0100204 android:name=".activity.MailboxList"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700205 >
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800206 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700207
Andrew Stadler47654722009-06-30 15:12:23 -0700208 <activity
Mihai Predab0528852010-02-10 16:46:41 +0100209 android:name=".activity.MessageList"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700210 >
Makoto Onuki191448b2010-08-04 15:38:25 -0700211 </activity>
212 <activity
Makoto Onuki81127322011-04-27 17:55:13 -0700213 android:name=".activity.EmailActivity">
Marc Blank78684cc2011-03-31 13:29:23 -0700214 <intent-filter>
215 <action android:name="android.intent.action.SEARCH" />
216 </intent-filter>
217 <meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/>
Andrew Stadler47654722009-06-30 15:12:23 -0700218 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800219 <activity
220 android:name=".activity.MessageView"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700221 >
Makoto Onukie105fbe2010-07-26 14:35:06 -0700222 </activity>
223 <activity
224 android:name=".activity.MessageFileView"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700225 >
Marc Blank1b9337e2010-09-23 09:19:44 -0700226 <intent-filter
227 android:label="@string/app_name">
228 <action
229 android:name="android.intent.action.VIEW" />
230 <data
231 android:mimeType="application/eml" />
232 <data
233 android:mimeType="message/rfc822" />
234 <category
235 android:name="android.intent.category.DEFAULT" />
Marc Blank391ae252010-05-04 15:33:08 -0700236 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800237 </activity>
238 <activity
239 android:name=".activity.MessageCompose"
Makoto Onukibf678772010-11-03 14:20:10 -0700240 android:label="@string/compose_title"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800241 android:enabled="false"
242 >
243 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700244 <action
245 android:name="android.intent.action.VIEW" />
246 <action
247 android:name="android.intent.action.SENDTO" />
248 <data
249 android:scheme="mailto" />
250 <category
251 android:name="android.intent.category.DEFAULT" />
252 <category
253 android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800254 </intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700255 <intent-filter
256 android:label="@string/app_name">
257 <action
258 android:name="android.intent.action.SEND" />
259 <data
260 android:mimeType="*/*" />
261 <category
262 android:name="android.intent.category.DEFAULT" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800263 </intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700264 <intent-filter
265 android:label="@string/app_name">
266 <action
267 android:name="android.intent.action.SEND_MULTIPLE" />
268 <data
269 android:mimeType="*/*" />
270 <category
271 android:name="android.intent.category.DEFAULT" />
272 </intent-filter>
273 <intent-filter>
274 <action
275 android:name="com.android.email.intent.action.REPLY" />
Mihai Predafa2238c2009-09-01 16:25:30 +0200276 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800277 </activity>
Marc Blank53cb37c2009-08-28 10:33:18 -0700278
Makoto Onukic50b6f62011-01-14 12:00:17 -0800279 <receiver
Marc Blank1b9337e2010-09-23 09:19:44 -0700280 android:name=".service.AttachmentDownloadService$Watchdog"
Marc Blank3bbc6902010-11-29 13:21:11 -0800281 android:enabled="true"/>
282
Marc Blank1b9337e2010-09-23 09:19:44 -0700283 <receiver
284 android:name=".service.EmailBroadcastReceiver"
285 android:enabled="true">
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800286 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700287 <action
288 android:name="android.intent.action.BOOT_COMPLETED" />
289 <action
290 android:name="android.intent.action.DEVICE_STORAGE_LOW" />
291 <action
292 android:name="android.intent.action.DEVICE_STORAGE_OK" />
Makoto Onukic50b6f62011-01-14 12:00:17 -0800293 <action
294 android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800295 </intent-filter>
Makoto Onuki42e3f102010-06-30 15:43:12 -0700296 <!-- To handle secret code to activate the debug screen. -->
297 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700298 <action
299 android:name="android.provider.Telephony.SECRET_CODE" />
Makoto Onuki42e3f102010-06-30 15:43:12 -0700300 <!-- "36245" = "email" -->
Marc Blank1b9337e2010-09-23 09:19:44 -0700301 <data
302 android:scheme="android_secret_code"
303 android:host="36245" />
Makoto Onuki42e3f102010-06-30 15:43:12 -0700304 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800305 </receiver>
Marc Blank1b9337e2010-09-23 09:19:44 -0700306 <service
307 android:name=".service.EmailBroadcastProcessorService" />
Marc Blank53cb37c2009-08-28 10:33:18 -0700308
Andrew Stadlerd6286082010-02-01 16:48:16 -0800309 <!-- Support for DeviceAdmin / DevicePolicyManager. See SecurityPolicy class for impl. -->
310 <receiver
311 android:name=".SecurityPolicy$PolicyAdmin"
312 android:label="@string/device_admin_label"
313 android:description="@string/device_admin_description"
314 android:permission="android.permission.BIND_DEVICE_ADMIN" >
315 <meta-data
316 android:name="android.app.device_admin"
317 android:resource="@xml/device_admin" />
318 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700319 <action
320 android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
Andrew Stadlerd6286082010-02-01 16:48:16 -0800321 </intent-filter>
322 </receiver>
Makoto Onukib854d052010-01-28 10:07:51 -0800323
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800324 <service
325 android:name=".service.MailService"
326 android:enabled="false"
327 >
328 </service>
Makoto Onukid6a29782010-07-21 14:29:49 -0700329
Marc Blankc184f362010-08-23 18:48:25 -0700330 <service
Makoto Onuki45f530b2010-08-24 11:12:53 -0700331 android:name=".Controller$ControllerService"
332 android:enabled="true"
Marc Blank7894ee82010-08-18 08:50:45 -0700333 >
334 </service>
335
336 <service
Marc Blank09fd4d02010-08-09 17:48:53 -0700337 android:name=".service.AttachmentDownloadService"
338 android:enabled="false"
339 >
340 </service>
341
Marc Blanke6cc6622010-07-08 10:08:47 -0700342 <!--Required stanza to register the PopImapAuthenticatorService with AccountManager -->
343 <service
344 android:name=".service.PopImapAuthenticatorService"
345 android:exported="true"
346 android:enabled="true"
347 >
348 <intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800349 <action
Marc Blank1b9337e2010-09-23 09:19:44 -0700350 android:name="android.accounts.AccountAuthenticator" />
Marc Blanke6cc6622010-07-08 10:08:47 -0700351 </intent-filter>
352 <meta-data
353 android:name="android.accounts.AccountAuthenticator"
354 android:resource="@xml/pop_imap_authenticator"
355 />
356 </service>
357
358 <!--Required stanza to register the PopImapSyncAdapterService with SyncManager -->
359 <service
360 android:name="com.android.email.service.PopImapSyncAdapterService"
361 android:exported="true">
362 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700363 <action
364 android:name="android.content.SyncAdapter" />
Marc Blanke6cc6622010-07-08 10:08:47 -0700365 </intent-filter>
366 <meta-data android:name="android.content.SyncAdapter"
367 android:resource="@xml/syncadapter_pop_imap" />
368 </service>
369
Marc Blank9ba506c2011-02-08 18:54:56 -0800370 <!-- Require provider permission to use our Policy and Account services -->
371 <service
372 android:name=".service.PolicyService"
373 android:enabled="true"
374 android:permission="com.android.email.permission.ACCESS_PROVIDER"
375 >
376 <intent-filter>
377 <action
378 android:name="com.android.email.POLICY_INTENT" />
379 </intent-filter>
380 </service>
381
Marc Blank8a574692011-02-08 17:50:30 -0800382 <service
383 android:name=".service.AccountService"
384 android:enabled="true"
385 android:permission="com.android.email.permission.ACCESS_PROVIDER"
386 >
387 <intent-filter>
388 <action
389 android:name="com.android.email.ACCOUNT_INTENT" />
390 </intent-filter>
391 </service>
392
Andrew Stadler17250422009-07-07 09:39:11 -0700393 <!--Required stanza to register the EasAuthenticatorService with AccountManager -->
Makoto Onukib854d052010-01-28 10:07:51 -0800394 <service
395 android:name=".service.EasAuthenticatorService"
396 android:exported="true"
397 android:enabled="true"
398 >
Andrew Stadler17250422009-07-07 09:39:11 -0700399 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700400 <action
401 android:name="android.accounts.AccountAuthenticator" />
Andrew Stadler17250422009-07-07 09:39:11 -0700402 </intent-filter>
Makoto Onukib854d052010-01-28 10:07:51 -0800403 <meta-data
404 android:name="android.accounts.AccountAuthenticator"
Marc Blanke6cc6622010-07-08 10:08:47 -0700405 android:resource="@xml/eas_authenticator"
Makoto Onukib854d052010-01-28 10:07:51 -0800406 />
407 </service>
408 <!--
Marc Blank1b9337e2010-09-23 09:19:44 -0700409 EasAuthenticatorService with the alternative label. Disabled by default,
Makoto Onukib854d052010-01-28 10:07:51 -0800410 and OneTimeInitializer enables it if the vendor policy tells so.
411 -->
412 <service
413 android:name=".service.EasAuthenticatorServiceAlternate"
414 android:exported="true"
415 android:enabled="false"
416 >
417 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700418 <action
419 android:name="android.accounts.AccountAuthenticator" />
Makoto Onukib854d052010-01-28 10:07:51 -0800420 </intent-filter>
421 <meta-data
422 android:name="android.accounts.AccountAuthenticator"
423 android:resource="@xml/authenticator_alternate"
424 />
Andrew Stadler17250422009-07-07 09:39:11 -0700425 </service>
426
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800427 <provider
428 android:name=".provider.AttachmentProvider"
429 android:authorities="com.android.email.attachmentprovider"
430 android:multiprocess="true"
431 android:grantUriPermissions="true"
432 android:readPermission="com.android.email.permission.READ_ATTACHMENT"
433 />
Andrew Stadler22722202009-09-20 17:23:59 -0700434
435 <!-- This provider MUST be protected by strict permissions, as granting access to
436 it exposes user passwords and other confidential information. -->
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700437 <provider
438 android:name=".provider.EmailProvider"
Marc Blank0fd8ae82010-12-17 09:54:20 -0800439 android:authorities="com.android.email.provider;com.android.email.notifier"
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700440 android:multiprocess="true"
Andrew Stadler22722202009-09-20 17:23:59 -0700441 android:permission="com.android.email.permission.ACCESS_PROVIDER"
Marc Blanke6cc6622010-07-08 10:08:47 -0700442 android:label="@string/app_name"
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700443 />
Andrew Stadlere2c56fc2010-03-13 00:38:47 -0800444
Marc Blank1b9337e2010-09-23 09:19:44 -0700445 <!-- Email AppWidget definitions -->
446 <service
447 android:name=".provider.WidgetProvider$WidgetService"
Winson Chungcb8a5542011-01-18 15:31:05 -0800448 android:permission="android.permission.BIND_REMOTEVIEWS"
449 android:exported="false"
Marc Blank1b9337e2010-09-23 09:19:44 -0700450 />
451 <receiver
452 android:name=".provider.WidgetProvider" >
453 <intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800454 <action
Marc Blank1b9337e2010-09-23 09:19:44 -0700455 android:name="android.appwidget.action.APPWIDGET_UPDATE" />
456 </intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800457 <meta-data
Marc Blank1b9337e2010-09-23 09:19:44 -0700458 android:name="android.appwidget.provider"
459 android:resource="@xml/widget_info" />
460 </receiver>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800461 </application>
462</manifest>