summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2016-01-26 14:38:57 -0800
committerNancy Chen <nancychen@google.com>2016-01-27 16:50:10 -0800
commitcc42b5953588110cc89b43e72d2b6579757017a1 (patch)
treecbdf42c09424fc8d149dce1ac7e7a461b127ab0f /AndroidManifest.xml
parente96b82ccd6936d2f0786d3ae0740efdd2e60e7b4 (diff)
downloadandroid_packages_apps_Dialer-cc42b5953588110cc89b43e72d2b6579757017a1.tar.gz
android_packages_apps_Dialer-cc42b5953588110cc89b43e72d2b6579757017a1.tar.bz2
android_packages_apps_Dialer-cc42b5953588110cc89b43e72d2b6579757017a1.zip
Display missed call notifications in Dialer.
Dialer is now putting up the missed call notification instead of Telecom. As a result, it has to handle receiving a new missed call broadcast and sending requests back to Telecom to update the missed call count. + MissedCallNotifier class displays notifications and triggers call back sms, and dismiss intents. + CallLogNotificationsService added actions it can handle for missed calls. + MissedCallNotificationReceiver receives the missed call intent to update the notifications. Bug: 22857261 Change-Id: I03a3c3b5a2533a3ea26d668124fcaf3fa72347fc
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 67161ad5f..1be19101b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -271,6 +271,12 @@
android:exported="false"
/>
+ <receiver android:name=".calllog.MissedCallNotificationReceiver">
+ <intent-filter>
+ <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" />
+ </intent-filter>
+ </receiver>
+
<!-- Service to update a contact -->
<service
android:name=".contact.ContactUpdateService"