blob: 524062f3414324f5f7e10d733ab7e4b7a5ebe48d [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"
68 android:label="@string/read_attachment_label"
69 android:description="@string/read_attachment_desc"/>
70 <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 Blank06275c42009-08-05 21:48:15 -0700111 <!-- Must be exported in order for the AccountManager to launch it -->
Andy Stadlerd685b462010-12-04 22:53:59 -0800112 <!-- Also available for continuous test systems to force account creation -->
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800113 <activity
114 android:name=".activity.setup.AccountSetupBasics"
115 android:label="@string/account_setup_basics_title"
Marc Blank06275c42009-08-05 21:48:15 -0700116 android:exported="true"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800117 >
Andy Stadlerd685b462010-12-04 22:53:59 -0800118 <intent-filter>
119 <action
120 android:name="com.android.email.CREATE_ACCOUNT" />
121 <category
122 android:name="android.intent.category.DEFAULT" />
123 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800124 </activity>
125 <activity
126 android:name=".activity.setup.AccountSetupAccountType"
127 android:label="@string/account_setup_account_type_title"
128 >
129 </activity>
130 <activity
131 android:name=".activity.setup.AccountSetupIncoming"
132 android:label="@string/account_setup_incoming_title"
133 >
134 </activity>
135 <activity
136 android:name=".activity.setup.AccountSetupOutgoing"
137 android:label="@string/account_setup_outgoing_title"
138 >
139 </activity>
140 <activity
Andy Stadler87c43ca2009-04-03 16:02:55 -0700141 android:name=".activity.setup.AccountSetupExchange"
142 android:label="@string/account_setup_exchange_title"
143 >
144 </activity>
145 <activity
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800146 android:name=".activity.setup.AccountSetupOptions"
147 android:label="@string/account_setup_options_title"
148 >
149 </activity>
150 <activity
151 android:name=".activity.setup.AccountSetupNames"
152 android:label="@string/account_setup_names_title"
153 >
154 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800155 <activity
Andrew Stadler9c65c142010-09-01 21:17:53 -0700156 android:name=".activity.setup.AccountSettingsXL"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800157 android:label="@string/account_settings_action"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800158 >
Makoto Onuki0fef1f12010-02-16 14:04:25 -0800159 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700160 <action
161 android:name="com.android.email.activity.setup.ACCOUNT_MANAGER_ENTRY" />
162 <category
163 android:name="android.intent.category.DEFAULT" />
Makoto Onuki0fef1f12010-02-16 14:04:25 -0800164 </intent-filter>
Makoto Onuki308ce922011-03-21 17:08:16 -0700165 <intent-filter>
166 <action android:name="android.intent.action.EDIT" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <data
169 android:scheme="content"
170 android:host="ui.email.android.com"
171 android:path="/settings"
172 />
173 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800174 </activity>
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800175 <activity
176 android:name=".activity.setup.AccountSecurity"
177 android.label="@string/account_security_title"
178 >
179 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800180
181 <activity
Andrew Stadler72dce732009-07-09 12:33:09 -0700182 android:name=".activity.AccountFolderList"
Andrew Stadler0d6ce632010-06-28 16:00:25 -0700183 android:launchMode="singleTop"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700184 >
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800185 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700186
187 <activity
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800188 android:name=".activity.AccountShortcutPicker"
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800189 android:label="@string/account_shortcut_picker_title"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800190 android:enabled="false"
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800191 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800192 >
Andy Stadlerd87f81e2010-11-23 22:54:49 -0800193 <intent-filter
Marc Blank1b9337e2010-09-23 09:19:44 -0700194 android:label="@string/account_shortcut_picker_name">
195 <action
196 android:name="android.intent.action.CREATE_SHORTCUT" />
197 <category
198 android:name="android.intent.category.DEFAULT" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800199 </intent-filter>
200 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700201
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800202 <activity
Mihai Predab0528852010-02-10 16:46:41 +0100203 android:name=".activity.MailboxList"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700204 >
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800205 </activity>
Makoto Onukid6a29782010-07-21 14:29:49 -0700206
Andrew Stadler47654722009-06-30 15:12:23 -0700207 <activity
Mihai Predab0528852010-02-10 16:46:41 +0100208 android:name=".activity.MessageList"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700209 >
Makoto Onuki191448b2010-08-04 15:38:25 -0700210 </activity>
211 <activity
212 android:name=".activity.MessageListXL"
Makoto Onuki191448b2010-08-04 15:38:25 -0700213 >
Andrew Stadler47654722009-06-30 15:12:23 -0700214 </activity>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800215 <activity
216 android:name=".activity.MessageView"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700217 >
Makoto Onukie105fbe2010-07-26 14:35:06 -0700218 </activity>
219 <activity
220 android:name=".activity.MessageFileView"
Makoto Onuki2f4e87c2010-08-25 11:14:19 -0700221 >
Marc Blank1b9337e2010-09-23 09:19:44 -0700222 <intent-filter
223 android:label="@string/app_name">
224 <action
225 android:name="android.intent.action.VIEW" />
226 <data
227 android:mimeType="application/eml" />
228 <data
229 android:mimeType="message/rfc822" />
230 <category
231 android:name="android.intent.category.DEFAULT" />
Marc Blank391ae252010-05-04 15:33:08 -0700232 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800233 </activity>
234 <activity
235 android:name=".activity.MessageCompose"
Makoto Onukibf678772010-11-03 14:20:10 -0700236 android:label="@string/compose_title"
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800237 android:enabled="false"
238 >
239 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700240 <action
241 android:name="android.intent.action.VIEW" />
242 <action
243 android:name="android.intent.action.SENDTO" />
244 <data
245 android:scheme="mailto" />
246 <category
247 android:name="android.intent.category.DEFAULT" />
248 <category
249 android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800250 </intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700251 <intent-filter
252 android:label="@string/app_name">
253 <action
254 android:name="android.intent.action.SEND" />
255 <data
256 android:mimeType="*/*" />
257 <category
258 android:name="android.intent.category.DEFAULT" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800259 </intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700260 <intent-filter
261 android:label="@string/app_name">
262 <action
263 android:name="android.intent.action.SEND_MULTIPLE" />
264 <data
265 android:mimeType="*/*" />
266 <category
267 android:name="android.intent.category.DEFAULT" />
268 </intent-filter>
269 <intent-filter>
270 <action
271 android:name="com.android.email.intent.action.REPLY" />
Mihai Predafa2238c2009-09-01 16:25:30 +0200272 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800273 </activity>
Marc Blank53cb37c2009-08-28 10:33:18 -0700274
Makoto Onukic50b6f62011-01-14 12:00:17 -0800275 <receiver
Marc Blank1b9337e2010-09-23 09:19:44 -0700276 android:name=".service.AttachmentDownloadService$Watchdog"
Marc Blank3bbc6902010-11-29 13:21:11 -0800277 android:enabled="true"/>
278
Marc Blank1b9337e2010-09-23 09:19:44 -0700279 <receiver
280 android:name=".service.EmailBroadcastReceiver"
281 android:enabled="true">
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800282 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700283 <action
284 android:name="android.intent.action.BOOT_COMPLETED" />
285 <action
286 android:name="android.intent.action.DEVICE_STORAGE_LOW" />
287 <action
288 android:name="android.intent.action.DEVICE_STORAGE_OK" />
Makoto Onukic50b6f62011-01-14 12:00:17 -0800289 <action
290 android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800291 </intent-filter>
Makoto Onuki42e3f102010-06-30 15:43:12 -0700292 <!-- To handle secret code to activate the debug screen. -->
293 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700294 <action
295 android:name="android.provider.Telephony.SECRET_CODE" />
Makoto Onuki42e3f102010-06-30 15:43:12 -0700296 <!-- "36245" = "email" -->
Marc Blank1b9337e2010-09-23 09:19:44 -0700297 <data
298 android:scheme="android_secret_code"
299 android:host="36245" />
Makoto Onuki42e3f102010-06-30 15:43:12 -0700300 </intent-filter>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800301 </receiver>
Marc Blank1b9337e2010-09-23 09:19:44 -0700302 <service
303 android:name=".service.EmailBroadcastProcessorService" />
Marc Blank53cb37c2009-08-28 10:33:18 -0700304
Andrew Stadlerd6286082010-02-01 16:48:16 -0800305 <!-- Support for DeviceAdmin / DevicePolicyManager. See SecurityPolicy class for impl. -->
306 <receiver
307 android:name=".SecurityPolicy$PolicyAdmin"
308 android:label="@string/device_admin_label"
309 android:description="@string/device_admin_description"
310 android:permission="android.permission.BIND_DEVICE_ADMIN" >
311 <meta-data
312 android:name="android.app.device_admin"
313 android:resource="@xml/device_admin" />
314 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700315 <action
316 android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
Andrew Stadlerd6286082010-02-01 16:48:16 -0800317 </intent-filter>
318 </receiver>
Makoto Onukib854d052010-01-28 10:07:51 -0800319
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800320 <service
321 android:name=".service.MailService"
322 android:enabled="false"
323 >
324 </service>
Makoto Onukid6a29782010-07-21 14:29:49 -0700325
Marc Blankc184f362010-08-23 18:48:25 -0700326 <service
Makoto Onuki45f530b2010-08-24 11:12:53 -0700327 android:name=".Controller$ControllerService"
328 android:enabled="true"
Marc Blank7894ee82010-08-18 08:50:45 -0700329 >
330 </service>
331
332 <service
Marc Blank09fd4d02010-08-09 17:48:53 -0700333 android:name=".service.AttachmentDownloadService"
334 android:enabled="false"
335 >
336 </service>
337
Marc Blanke6cc6622010-07-08 10:08:47 -0700338 <!--Required stanza to register the PopImapAuthenticatorService with AccountManager -->
339 <service
340 android:name=".service.PopImapAuthenticatorService"
341 android:exported="true"
342 android:enabled="true"
343 >
344 <intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800345 <action
Marc Blank1b9337e2010-09-23 09:19:44 -0700346 android:name="android.accounts.AccountAuthenticator" />
Marc Blanke6cc6622010-07-08 10:08:47 -0700347 </intent-filter>
348 <meta-data
349 android:name="android.accounts.AccountAuthenticator"
350 android:resource="@xml/pop_imap_authenticator"
351 />
352 </service>
353
354 <!--Required stanza to register the PopImapSyncAdapterService with SyncManager -->
355 <service
356 android:name="com.android.email.service.PopImapSyncAdapterService"
357 android:exported="true">
358 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700359 <action
360 android:name="android.content.SyncAdapter" />
Marc Blanke6cc6622010-07-08 10:08:47 -0700361 </intent-filter>
362 <meta-data android:name="android.content.SyncAdapter"
363 android:resource="@xml/syncadapter_pop_imap" />
364 </service>
365
Marc Blank9ba506c2011-02-08 18:54:56 -0800366 <!-- Require provider permission to use our Policy and Account services -->
367 <service
368 android:name=".service.PolicyService"
369 android:enabled="true"
370 android:permission="com.android.email.permission.ACCESS_PROVIDER"
371 >
372 <intent-filter>
373 <action
374 android:name="com.android.email.POLICY_INTENT" />
375 </intent-filter>
376 </service>
377
Marc Blank8a574692011-02-08 17:50:30 -0800378 <service
379 android:name=".service.AccountService"
380 android:enabled="true"
381 android:permission="com.android.email.permission.ACCESS_PROVIDER"
382 >
383 <intent-filter>
384 <action
385 android:name="com.android.email.ACCOUNT_INTENT" />
386 </intent-filter>
387 </service>
388
Andrew Stadler17250422009-07-07 09:39:11 -0700389 <!--Required stanza to register the EasAuthenticatorService with AccountManager -->
Makoto Onukib854d052010-01-28 10:07:51 -0800390 <service
391 android:name=".service.EasAuthenticatorService"
392 android:exported="true"
393 android:enabled="true"
394 >
Andrew Stadler17250422009-07-07 09:39:11 -0700395 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700396 <action
397 android:name="android.accounts.AccountAuthenticator" />
Andrew Stadler17250422009-07-07 09:39:11 -0700398 </intent-filter>
Makoto Onukib854d052010-01-28 10:07:51 -0800399 <meta-data
400 android:name="android.accounts.AccountAuthenticator"
Marc Blanke6cc6622010-07-08 10:08:47 -0700401 android:resource="@xml/eas_authenticator"
Makoto Onukib854d052010-01-28 10:07:51 -0800402 />
403 </service>
404 <!--
Marc Blank1b9337e2010-09-23 09:19:44 -0700405 EasAuthenticatorService with the alternative label. Disabled by default,
Makoto Onukib854d052010-01-28 10:07:51 -0800406 and OneTimeInitializer enables it if the vendor policy tells so.
407 -->
408 <service
409 android:name=".service.EasAuthenticatorServiceAlternate"
410 android:exported="true"
411 android:enabled="false"
412 >
413 <intent-filter>
Marc Blank1b9337e2010-09-23 09:19:44 -0700414 <action
415 android:name="android.accounts.AccountAuthenticator" />
Makoto Onukib854d052010-01-28 10:07:51 -0800416 </intent-filter>
417 <meta-data
418 android:name="android.accounts.AccountAuthenticator"
419 android:resource="@xml/authenticator_alternate"
420 />
Andrew Stadler17250422009-07-07 09:39:11 -0700421 </service>
422
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800423 <provider
424 android:name=".provider.AttachmentProvider"
425 android:authorities="com.android.email.attachmentprovider"
426 android:multiprocess="true"
427 android:grantUriPermissions="true"
428 android:readPermission="com.android.email.permission.READ_ATTACHMENT"
429 />
Andrew Stadler22722202009-09-20 17:23:59 -0700430
431 <!-- This provider MUST be protected by strict permissions, as granting access to
432 it exposes user passwords and other confidential information. -->
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700433 <provider
434 android:name=".provider.EmailProvider"
Marc Blank0fd8ae82010-12-17 09:54:20 -0800435 android:authorities="com.android.email.provider;com.android.email.notifier"
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700436 android:multiprocess="true"
Andrew Stadler22722202009-09-20 17:23:59 -0700437 android:permission="com.android.email.permission.ACCESS_PROVIDER"
Marc Blanke6cc6622010-07-08 10:08:47 -0700438 android:label="@string/app_name"
Marc Blankc5f2a7a2009-05-27 15:43:27 -0700439 />
Andrew Stadlere2c56fc2010-03-13 00:38:47 -0800440
Marc Blank1b9337e2010-09-23 09:19:44 -0700441 <!-- Email AppWidget definitions -->
442 <service
443 android:name=".provider.WidgetProvider$WidgetService"
Winson Chungcb8a5542011-01-18 15:31:05 -0800444 android:permission="android.permission.BIND_REMOTEVIEWS"
445 android:exported="false"
Marc Blank1b9337e2010-09-23 09:19:44 -0700446 />
447 <receiver
448 android:name=".provider.WidgetProvider" >
449 <intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800450 <action
Marc Blank1b9337e2010-09-23 09:19:44 -0700451 android:name="android.appwidget.action.APPWIDGET_UPDATE" />
452 </intent-filter>
Makoto Onukic50b6f62011-01-14 12:00:17 -0800453 <meta-data
Marc Blank1b9337e2010-09-23 09:19:44 -0700454 android:name="android.appwidget.provider"
455 android:resource="@xml/widget_info" />
456 </receiver>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800457 </application>
458</manifest>