summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorPaul Westbrook <pwestbro@google.com>2012-02-07 15:23:42 -0800
committerPaul Westbrook <pwestbro@google.com>2012-02-08 10:28:08 -0800
commit77177b171c483d485bdbff0178564394e8f57d0f (patch)
tree516f9c43c4d0ad02d66cd92124aad62603c5eadf /AndroidManifest.xml
parente7a2422ebff93a73340aceab4c006909bccca8a9 (diff)
downloadandroid_packages_apps_UnifiedEmail-77177b171c483d485bdbff0178564394e8f57d0f.tar.gz
android_packages_apps_UnifiedEmail-77177b171c483d485bdbff0178564394e8f57d0f.tar.bz2
android_packages_apps_UnifiedEmail-77177b171c483d485bdbff0178564394e8f57d0f.zip
Start of restructuring to allow overlays include subset of providers
This allows us to build a UnifiedEmail that supports all providers and use this base to build applications that only supports a subset of the providers Made AccountCacheProvider and ConversationProvider abstract. This allows the extending class to specify the authority that should be used (This allows both UnifiedEmail and Gmail to be installed at the same time) Change-Id: I31295f4630906e7182e423fcbb7b47c33ba4cd4f
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 6206d4e0c..cd78cc20d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -64,7 +64,7 @@
android:authorities="com.android.mail.conversation.provider"
android:label="@string/conversation_content_provider"
android:multiprocess="false"
- android:name=".browse.ConversationCursor$ConversationProvider" >
+ android:name=".browse.UnifiedConversationProvider" >
<grant-uri-permission android:pathPattern=".*" />
</provider>
@@ -72,7 +72,7 @@
android:authorities="com.android.mail.accountcache"
android:label="@string/account_cache_provider"
android:multiprocess="false"
- android:name=".providers.AccountCacheProvider" >
+ android:name=".providers.UnifiedAccountCacheProvider" >
<grant-uri-permission android:pathPattern=".*" />
</provider>