make channel for video compression
This commit is contained in:
parent
14e0df2caf
commit
816f5b6d22
|
@ -120,6 +120,14 @@ public class NotificationService {
|
||||||
errorChannel.setShowBadge(false);
|
errorChannel.setShowBadge(false);
|
||||||
errorChannel.setGroup("status");
|
errorChannel.setGroup("status");
|
||||||
notificationManager.createNotificationChannel(errorChannel);
|
notificationManager.createNotificationChannel(errorChannel);
|
||||||
|
|
||||||
|
final NotificationChannel videoCompressionChannel = new NotificationChannel("compression",
|
||||||
|
c.getString(R.string.video_compression_channel_name),
|
||||||
|
NotificationManager.IMPORTANCE_LOW);
|
||||||
|
videoCompressionChannel.setShowBadge(false);
|
||||||
|
videoCompressionChannel.setGroup("status");
|
||||||
|
notificationManager.createNotificationChannel(videoCompressionChannel);
|
||||||
|
|
||||||
final NotificationChannel messagesChannel = new NotificationChannel("messages",
|
final NotificationChannel messagesChannel = new NotificationChannel("messages",
|
||||||
c.getString(R.string.messages_channel_name),
|
c.getString(R.string.messages_channel_name),
|
||||||
NotificationManager.IMPORTANCE_HIGH);
|
NotificationManager.IMPORTANCE_HIGH);
|
||||||
|
@ -881,7 +889,7 @@ public class NotificationService {
|
||||||
mBuilder.setSmallIcon(R.drawable.ic_hourglass_empty_white_24dp);
|
mBuilder.setSmallIcon(R.drawable.ic_hourglass_empty_white_24dp);
|
||||||
mBuilder.setContentIntent(createContentIntent(message.getConversation()));
|
mBuilder.setContentIntent(createContentIntent(message.getConversation()));
|
||||||
if (Compatibility.twentySix()) {
|
if (Compatibility.twentySix()) {
|
||||||
mBuilder.setChannelId("foreground");
|
mBuilder.setChannelId("compression");
|
||||||
}
|
}
|
||||||
Notification notification = mBuilder.build();
|
Notification notification = mBuilder.build();
|
||||||
notify(FOREGROUND_NOTIFICATION_ID, notification);
|
notify(FOREGROUND_NOTIFICATION_ID, notification);
|
||||||
|
|
|
@ -738,4 +738,5 @@
|
||||||
<string name="silent_messages_channel_description">This notification group is used to display notifications that should not trigger any sound. For example when being active on another device (Grace Period).</string>
|
<string name="silent_messages_channel_description">This notification group is used to display notifications that should not trigger any sound. For example when being active on another device (Grace Period).</string>
|
||||||
<string name="pref_more_notification_settings">Notification Settings</string>
|
<string name="pref_more_notification_settings">Notification Settings</string>
|
||||||
<string name="pref_more_notification_settings_summary">Importance, Sound, Vibrate</string>
|
<string name="pref_more_notification_settings_summary">Importance, Sound, Vibrate</string>
|
||||||
|
<string name="video_compression_channel_name">Video compression</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue