summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2013-05-31 10:39:50 -0700
committerAndrew Sapperstein <asapperstein@google.com>2013-05-31 10:39:50 -0700
commitf86e023107de3647d6c862cc6d6b45a3d7887e77 (patch)
treed20a7f8cde113a492503baf3e610df5e223d7186 /AndroidManifest.xml
parent54a31cce9dc32c64fcb6f6eca3f39500bb0e6cd3 (diff)
downloadandroid_packages_apps_UnifiedEmail-f86e023107de3647d6c862cc6d6b45a3d7887e77.tar.gz
android_packages_apps_UnifiedEmail-f86e023107de3647d6c862cc6d6b45a3d7887e77.tar.bz2
android_packages_apps_UnifiedEmail-f86e023107de3647d6c862cc6d6b45a3d7887e77.zip
Basic EML viewing support.
The base of an implementation is there. We can view the plaintext right now. Change-Id: Ib9dd37197c0592221f49b7770efb459484a4e6f0
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 24fa2b2e6..130700b0c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -111,6 +111,16 @@
android:label="@string/app_name"
android:theme="@style/PhotoViewTheme" >
</activity>
+ <activity
+ android:name=".browse.EmlViewerActivity"
+ android:label="@string/app_name"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="message/rfc822" />
+ </intent-filter>
+ </activity>
<provider
android:authorities="com.android.mail.mockprovider"