Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 2 | <!-- |
| 3 | Copyright (C) 2012 The Android Open Source Project |
Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 4 | |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Andy Huang | 30e2c24 | 2012-01-06 18:14:30 -0800 | [diff] [blame] | 18 | package="com.android.mail" |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 19 | android:versionCode="1" |
| 20 | android:versionName="1.0" > |
| 21 | |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
Marc Blank | 9e5a3fd | 2012-01-11 15:57:08 -0800 | [diff] [blame] | 23 | <!-- Allows mail to access the user's contacts, for email address auto-completion --> |
Mindy Pereira | 3528d36 | 2012-01-05 14:39:44 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.READ_CONTACTS"/> |
Marc Blank | 9e5a3fd | 2012-01-11 15:57:08 -0800 | [diff] [blame] | 25 | <!-- Allows access to EmailProvider (EAS/IMAP/POP3) --> |
| 26 | <uses-permission android:name="com.android.email.permission.ACCESS_PROVIDER"/> |
Marc Blank | 503f4d4 | 2012-03-08 20:04:38 -0800 | [diff] [blame] | 27 | <uses-permission android:name="com.android.email.permission.READ_ATTACHMENT"/> |
Vikram Aggarwal | 1ddcf0f | 2012-01-13 11:45:02 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.NFC" /> |
| 29 | |
mindyp | 19a95a9 | 2012-10-02 09:56:12 -0700 | [diff] [blame] | 30 | <!-- This needs to be present when we are doing unbundled releases. --> |
| 31 | <uses-sdk android:targetSdkVersion="17" android:minSdkVersion="14" /> |
| 32 | |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 33 | <application |
| 34 | android:icon="@mipmap/ic_launcher_mail" |
Mindy Pereira | 6f92de6 | 2011-12-19 11:31:48 -0800 | [diff] [blame] | 35 | android:label="@string/app_name" |
Mindy Pereira | c08c15e | 2012-03-06 16:04:11 -0800 | [diff] [blame] | 36 | android:theme="@style/UnifiedEmailTheme" > |
Mindy Pereira | 68f2e22 | 2012-03-07 10:36:54 -0800 | [diff] [blame] | 37 | <!-- Enable search in all activities --> |
| 38 | <meta-data android:name="android.app.default_searchable" |
| 39 | android:value=".ui.MailActivity" /> |
Vikram Aggarwal | 04ff99c | 2012-02-28 15:29:13 -0800 | [diff] [blame] | 40 | <!-- TODO: add a permission on this --> |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 41 | <activity |
| 42 | android:label="@string/app_name" |
Vikram Aggarwal | 04ff99c | 2012-02-28 15:29:13 -0800 | [diff] [blame] | 43 | android:name=".ui.MailActivity" |
Vikram Aggarwal | 0dda573 | 2012-04-06 11:20:16 -0700 | [diff] [blame] | 44 | android:launchMode="singleTop" |
Vikram Aggarwal | 04ff99c | 2012-02-28 15:29:13 -0800 | [diff] [blame] | 45 | android:uiOptions="splitActionBarWhenNarrow"> |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 46 | <intent-filter > |
Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 47 | <action android:name="android.intent.action.MAIN" /> |
| 48 | <category android:name="android.intent.category.LAUNCHER" /> |
| 49 | </intent-filter> |
Vikram Aggarwal | 04ff99c | 2012-02-28 15:29:13 -0800 | [diff] [blame] | 50 | <intent-filter> |
| 51 | <action android:name="android.intent.action.VIEW" /> |
| 52 | <category android:name="android.intent.category.DEFAULT" /> |
| 53 | <data android:scheme="content"/> |
| 54 | <data android:mimeType="application/mail-ls" /> |
| 55 | </intent-filter> |
Mindy Pereira | 68f2e22 | 2012-03-07 10:36:54 -0800 | [diff] [blame] | 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.SEARCH" /> |
| 58 | <category android:name="android.intent.category.DEFAULT" /> |
| 59 | </intent-filter> |
| 60 | <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> |
Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 61 | </activity> |
Andy Huang | 848e508 | 2012-03-19 19:02:12 -0700 | [diff] [blame] | 62 | <activity android:name=".compose.ComposeActivity" |
| 63 | android:theme="@android:style/Theme.Holo.Light"> |
Mindy Pereira | 7418e4b | 2012-02-28 11:32:14 -0800 | [diff] [blame] | 64 | <intent-filter> |
| 65 | <action android:name="android.intent.action.VIEW" /> |
| 66 | <action android:name="android.intent.action.SENDTO" /> |
| 67 | <category android:name="android.intent.category.DEFAULT" /> |
| 68 | <category android:name="android.intent.category.BROWSABLE" /> |
| 69 | <data android:scheme="mailto" /> |
| 70 | </intent-filter> |
| 71 | |
| 72 | <intent-filter> |
| 73 | <action android:name="android.nfc.action.NDEF_DISCOVERED" /> |
| 74 | <category android:name="android.intent.category.DEFAULT" /> |
| 75 | <data android:scheme="mailto" /> |
| 76 | </intent-filter> |
| 77 | |
| 78 | <intent-filter android:label="@string/compose"> |
| 79 | <action android:name="android.intent.action.SEND" /> |
| 80 | <category android:name="android.intent.category.DEFAULT" /> |
| 81 | <data android:mimeType="*/*" /> |
| 82 | </intent-filter> |
| 83 | |
| 84 | <intent-filter android:label="@string/compose"> |
| 85 | <action android:name="android.intent.action.SEND_MULTIPLE" /> |
| 86 | <category android:name="android.intent.category.DEFAULT" /> |
| 87 | <data android:mimeType="*/*" /> |
| 88 | </intent-filter> |
| 89 | </activity> |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 90 | <activity android:name="LabelSynchronizationActivity" |
| 91 | android:theme="@android:style/Theme.Holo.Light.Dialog" /> |
| 92 | |
Mindy Pereira | 8a17d6e | 2012-02-23 15:23:21 -0800 | [diff] [blame] | 93 | <activity android:name=".ui.CreateShortcutActivity" |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 94 | android:theme="@style/ShortcutWidgetTheme" |
| 95 | android:label="@string/activity_folder_selection" /> |
| 96 | |
Mindy Pereira | 8a17d6e | 2012-02-23 15:23:21 -0800 | [diff] [blame] | 97 | <activity android:name=".ui.FolderSelectionActivity" |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 98 | android:theme="@style/ShortcutWidgetTheme" |
| 99 | android:label="@string/activity_folder_selection" /> |
| 100 | |
Mindy Pereira | 8a17d6e | 2012-02-23 15:23:21 -0800 | [diff] [blame] | 101 | <activity android:name=".ui.MailboxSelectionActivity" |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 102 | android:theme="@style/InvisibleShortcutWidgetTheme" |
| 103 | android:label="@string/app_name" > |
| 104 | <intent-filter> |
| 105 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
| 106 | </intent-filter> |
| 107 | </activity> |
Paul Westbrook | 82ea6da | 2011-12-15 11:03:51 -0800 | [diff] [blame] | 108 | |
Andrew Sapperstein | f62c05b | 2012-05-23 17:52:01 -0700 | [diff] [blame] | 109 | <activity |
Andrew Sapperstein | 4c7d8b5 | 2012-06-11 18:44:42 -0700 | [diff] [blame] | 110 | android:name=".photo.MailPhotoViewActivity" |
Andrew Sapperstein | f62c05b | 2012-05-23 17:52:01 -0700 | [diff] [blame] | 111 | android:label="@string/app_name" |
| 112 | android:theme="@style/PhotoViewTheme" > |
| 113 | </activity> |
| 114 | |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 115 | <provider |
| 116 | android:authorities="com.android.mail.mockprovider" |
| 117 | android:label="@string/mock_content_provider" |
| 118 | android:multiprocess="false" |
| 119 | android:name=".providers.protos.mock.MockUiProvider" > |
Paul Westbrook | 82ea6da | 2011-12-15 11:03:51 -0800 | [diff] [blame] | 120 | <grant-uri-permission android:pathPattern=".*" /> |
| 121 | </provider> |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 122 | |
| 123 | <provider |
Marc Blank | c8a9942 | 2012-01-19 14:27:47 -0800 | [diff] [blame] | 124 | android:authorities="com.android.mail.conversation.provider" |
| 125 | android:label="@string/conversation_content_provider" |
| 126 | android:multiprocess="false" |
Paul Westbrook | 77177b1 | 2012-02-07 15:23:42 -0800 | [diff] [blame] | 127 | android:name=".browse.UnifiedConversationProvider" > |
Marc Blank | c8a9942 | 2012-01-19 14:27:47 -0800 | [diff] [blame] | 128 | <grant-uri-permission android:pathPattern=".*" /> |
| 129 | </provider> |
| 130 | |
| 131 | <provider |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 132 | android:authorities="com.android.mail.accountcache" |
| 133 | android:label="@string/account_cache_provider" |
| 134 | android:multiprocess="false" |
Paul Westbrook | 77177b1 | 2012-02-07 15:23:42 -0800 | [diff] [blame] | 135 | android:name=".providers.UnifiedAccountCacheProvider" > |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 136 | <grant-uri-permission android:pathPattern=".*" /> |
| 137 | </provider> |
| 138 | |
Vikram Aggarwal | 6a62146 | 2012-04-02 14:42:40 -0700 | [diff] [blame] | 139 | <!-- The android:name is the name of the Provider class which is stored in |
| 140 | UnifiedEmail, and has package name com.android.mail.providers and the class is |
| 141 | called SuggestionsProvider. The authority name is specified in the MailAppProvider |
| 142 | which is specific to the two apps separately. --> |
| 143 | <provider android:name="com.android.mail.providers.SuggestionsProvider" |
| 144 | android:authorities="com.android.mail.suggestionsprovider" /> |
| 145 | |
Marc Blank | 9e5a3fd | 2012-01-11 15:57:08 -0800 | [diff] [blame] | 146 | <receiver android:name=".providers.protos.boot.AccountReceiver"> |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 147 | <intent-filter> |
Marc Blank | 9e5a3fd | 2012-01-11 15:57:08 -0800 | [diff] [blame] | 148 | <action android:name="com.android.mail.providers.protos.boot.intent.ACTION_PROVIDER_CREATED" /> |
Paul Westbrook | aa3e7a5 | 2012-01-04 17:55:39 -0800 | [diff] [blame] | 149 | </intent-filter> |
| 150 | </receiver> |
| 151 | |
Mindy Pereira | c3df174 | 2012-01-13 13:27:47 -0800 | [diff] [blame] | 152 | <service android:name=".compose.EmptyService"/> |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 153 | |
| 154 | <!-- Widget --> |
Mindy Pereira | 8a17d6e | 2012-02-23 15:23:21 -0800 | [diff] [blame] | 155 | <receiver android:name=".widget.WidgetProvider" android:label="@string/app_name"> |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 156 | <intent-filter> |
| 157 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 158 | </intent-filter> |
| 159 | <intent-filter> |
Mindy Pereira | 449be13 | 2012-03-12 13:11:37 -0700 | [diff] [blame] | 160 | <action android:name="com.android.mail.ACTION_NOTIFY_DATASET_CHANGED" /> |
Mindy Pereira | 8a8c50d | 2012-02-23 11:09:03 -0800 | [diff] [blame] | 161 | </intent-filter> |
| 162 | <meta-data android:name="android.appwidget.provider" |
| 163 | android:resource="@xml/widget_info" /> |
| 164 | </receiver> |
| 165 | <service android:name=".widget.WidgetService" |
| 166 | android:permission="android.permission.BIND_REMOTEVIEWS" |
| 167 | android:exported="false" /> |
| 168 | |
Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 169 | </application> |
Vikram Aggarwal | 5e5ac74 | 2011-12-19 08:14:16 -0800 | [diff] [blame] | 170 | |
Mindy Pereira | 0b2aaf4 | 2011-12-12 10:02:12 -0800 | [diff] [blame] | 171 | </manifest> |