summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorFlavio Lerda <flerda@google.com>2011-07-26 13:38:44 +0100
committerFlavio Lerda <flerda@google.com>2011-07-26 20:21:54 +0100
commitb78b7096618cd9c3c8db8e4a8e0ed684fe8b1b11 (patch)
tree0d7833523bc7890ba3fd0bb7969e35852738ae9d /AndroidManifest.xml
parent458627bdb10df6d7b0e3fb13e72cf97f96b6358a (diff)
downloadpackages_apps_Contacts-b78b7096618cd9c3c8db8e4a8e0ed684fe8b1b11.tar.gz
packages_apps_Contacts-b78b7096618cd9c3c8db8e4a8e0ed684fe8b1b11.tar.bz2
packages_apps_Contacts-b78b7096618cd9c3c8db8e4a8e0ed684fe8b1b11.zip
Fixes for voicemail notifications.
- Handle multiple notifications. - Clear notifications correctly. - Show un-cleared notifications on reboot. Bug: 4968721 Change-Id: I1bd1eda4d75371fb7ba92063d74a61de232b61d6
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ff7c0890f..6856452aa 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -647,7 +647,7 @@
android:resource="@xml/social_widget_info" />
</receiver>
- <receiver android:name=".calllog.NewVoicemailReceiver">
+ <receiver android:name=".calllog.CallLogReceiver">
<intent-filter>
<action android:name="android.intent.action.NEW_VOICEMAIL" />
<data
@@ -655,6 +655,9 @@
android:host="com.android.voicemail"
/>
</intent-filter>
+ <intent-filter android:priority="100">
+ <action android:name="android.intent.action.BOOT_COMPLETED"/>
+ </intent-filter>
</receiver>
<activity
@@ -664,5 +667,10 @@
<action android:name="android.intent.action.APPWIDGET_PICK" />
</intent-filter>
</activity>
+
+ <service
+ android:name=".calllog.CallLogNotificationsService"
+ android:exported="false"
+ />
</application>
</manifest>