summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2013-06-21 11:30:49 -0700
committerAndrew Sapperstein <asapperstein@google.com>2013-06-21 11:38:13 -0700
commit478417a79440904b8a9c45fd3e4ec84db339a755 (patch)
tree450f616ec6e0a13df447c406f25c3fbd6f470fa7 /AndroidManifest.xml
parenta54ee609cdb79ad3abdda2d7180a29617fa38610 (diff)
downloadandroid_packages_apps_Email-478417a79440904b8a9c45fd3e4ec84db339a755.tar.gz
android_packages_apps_Email-478417a79440904b8a9c45fd3e4ec84db339a755.tar.bz2
android_packages_apps_Email-478417a79440904b8a9c45fd3e4ec84db339a755.zip
Support eml attachments in email.
Change-Id: I76274540d00a292d5a8f777d75d8e9f7b2ef3a51
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 639d90acb..badbfdcbb 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -354,6 +354,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
@@ -698,6 +706,7 @@
</service>
<service android:name="com.android.mail.MailLogService">
</service>
+ <service android:name="com.android.mail.browse.EmlTempFileDeletionService" />
</application>
<!-- Legacy permissions, etc. can go here -->