summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2013-06-21 11:26:49 -0700
committerAndrew Sapperstein <asapperstein@google.com>2013-06-24 11:40:19 -0700
commit7434e800d4313a227120ca36bd95683752a7879f (patch)
tree987bd2fdb11b5e2cda31e3613df3f195c7ccd926 /AndroidManifest.xml
parent48ccbc53ef90bf6420f831f63e6243008e02a346 (diff)
downloadandroid_packages_apps_UnifiedEmail-7434e800d4313a227120ca36bd95683752a7879f.tar.gz
android_packages_apps_UnifiedEmail-7434e800d4313a227120ca36bd95683752a7879f.tar.bz2
android_packages_apps_UnifiedEmail-7434e800d4313a227120ca36bd95683752a7879f.zip
Attachments in eml files.
It's kinda slow for large eml files (because we have to parse the entire file) but it works. Hooray. Fixes b/6393073. Change-Id: I2d7a87a484cd282a000a0905fe069f3ab45e2061
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 91a8b3c7e..a615facb4 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -146,6 +146,14 @@
<grant-uri-permission android:pathPattern=".*" />
</provider>
+ <provider
+ android:authorities="@string/eml_attachment_provider"
+ android:multiprocess="false"
+ android:exported="false"
+ android:name="com.android.mail.providers.EmlAttachmentProvider" >
+ <grant-uri-permission android:pathPattern=".*" />
+ </provider>
+
<!-- The android:name is the name of the Provider class which is stored in
UnifiedEmail, and has package name com.android.mail.providers and the class is
called SuggestionsProvider. The authority name is specified in the MailAppProvider
@@ -170,6 +178,7 @@
android:permission="android.permission.BIND_REMOTEVIEWS"
android:exported="false" />
<service android:name=".MailLogService"/>
+ <service android:name=".browse.EmlTempFileDeletionService" />
</application>