Commit f0e59434 by Kunj Gupta

Added sub tile for notification in status bar.

parent dd1b3eff
......@@ -90,7 +90,8 @@ public class NotificationMessagingService extends FirebaseMessagingService {
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle(notification.getTitle())
.setContentTitle(getString(R.string.notification_status_bar_title_string))
.setContentText(notification.getShortDescription())
.setAutoCancel(true)
.setContentIntent(pendingIntent)
.setSound(defaultSoundUri);
......
......@@ -108,6 +108,7 @@
<string name="notification_screen_action_bar_title_string">Notifications</string>
<string name="notification_screen_empty_text_string">No Notifications</string>
<string name="go_to_notification_string">Go to Notification</string>
<string name="notification_status_bar_title_string">New Incident assigned to you</string>
<!--Chat Related String-->
<string name="chat_activity_label">Vera</string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment