diff options
author | sail <sail@google.com> | 2017-01-27 21:50:11 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-01-27 21:50:11 +0000 |
commit | d0f276eb48055e1f7b8df445d28d6c37acda3389 (patch) | |
tree | bd2ab01edb54ddfe91e58959ad41704a61075a58 | |
parent | 314b8478252851337825d17ad789e11ad8f15345 (diff) | |
parent | c1bd6a19590fbab8fb1750865ef496275712e144 (diff) |
Merge "Make missed call notification a noisy notification" am: 1e721c9f30
am: c1bd6a1959
Change-Id: I623ac5f1d12034cb584d1cdf850554c94c15048d
-rw-r--r-- | src/com/android/dialer/calllog/MissedCallNotifier.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/dialer/calllog/MissedCallNotifier.java b/src/com/android/dialer/calllog/MissedCallNotifier.java index f6830168b..732f65665 100644 --- a/src/com/android/dialer/calllog/MissedCallNotifier.java +++ b/src/com/android/dialer/calllog/MissedCallNotifier.java @@ -148,6 +148,7 @@ public class MissedCallNotifier { .setContentIntent(createCallLogPendingIntent()) .setAutoCancel(true) .setWhen(timeMs) + .setDefaults(Notification.DEFAULT_VIBRATE) .setDeleteIntent(createClearMissedCallsPendingIntent()) // Include a public version of the notification to be shown when the missed call // notification is shown on the user's lock screen and they have chosen to hide |