mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Disable sound of update channel
This commit is contained in:
parent
4d756593f5
commit
619a6685ea
1 changed files with 8 additions and 0 deletions
|
@ -304,6 +304,7 @@ public class ApplicationEx extends Application {
|
||||||
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
|
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
|
||||||
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
|
||||||
|
// Sync
|
||||||
NotificationChannel service = new NotificationChannel(
|
NotificationChannel service = new NotificationChannel(
|
||||||
"service", getString(R.string.channel_service),
|
"service", getString(R.string.channel_service),
|
||||||
NotificationManager.IMPORTANCE_MIN);
|
NotificationManager.IMPORTANCE_MIN);
|
||||||
|
@ -312,6 +313,7 @@ public class ApplicationEx extends Application {
|
||||||
service.setLockscreenVisibility(Notification.VISIBILITY_SECRET);
|
service.setLockscreenVisibility(Notification.VISIBILITY_SECRET);
|
||||||
nm.createNotificationChannel(service);
|
nm.createNotificationChannel(service);
|
||||||
|
|
||||||
|
// Send
|
||||||
NotificationChannel send = new NotificationChannel(
|
NotificationChannel send = new NotificationChannel(
|
||||||
"send", getString(R.string.channel_send),
|
"send", getString(R.string.channel_send),
|
||||||
NotificationManager.IMPORTANCE_DEFAULT);
|
NotificationManager.IMPORTANCE_DEFAULT);
|
||||||
|
@ -319,6 +321,7 @@ public class ApplicationEx extends Application {
|
||||||
send.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
send.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
||||||
nm.createNotificationChannel(send);
|
nm.createNotificationChannel(send);
|
||||||
|
|
||||||
|
// Notify
|
||||||
NotificationChannel notification = new NotificationChannel(
|
NotificationChannel notification = new NotificationChannel(
|
||||||
"notification", getString(R.string.channel_notification),
|
"notification", getString(R.string.channel_notification),
|
||||||
NotificationManager.IMPORTANCE_HIGH);
|
NotificationManager.IMPORTANCE_HIGH);
|
||||||
|
@ -326,20 +329,24 @@ public class ApplicationEx extends Application {
|
||||||
notification.enableLights(true);
|
notification.enableLights(true);
|
||||||
nm.createNotificationChannel(notification);
|
nm.createNotificationChannel(notification);
|
||||||
|
|
||||||
|
// Update
|
||||||
if (!Helper.isPlayStoreInstall(this)) {
|
if (!Helper.isPlayStoreInstall(this)) {
|
||||||
NotificationChannel update = new NotificationChannel(
|
NotificationChannel update = new NotificationChannel(
|
||||||
"update", getString(R.string.channel_update),
|
"update", getString(R.string.channel_update),
|
||||||
NotificationManager.IMPORTANCE_HIGH);
|
NotificationManager.IMPORTANCE_HIGH);
|
||||||
|
update.setSound(null, Notification.AUDIO_ATTRIBUTES_DEFAULT);
|
||||||
update.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
update.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
||||||
nm.createNotificationChannel(update);
|
nm.createNotificationChannel(update);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Warn
|
||||||
NotificationChannel warning = new NotificationChannel(
|
NotificationChannel warning = new NotificationChannel(
|
||||||
"warning", getString(R.string.channel_warning),
|
"warning", getString(R.string.channel_warning),
|
||||||
NotificationManager.IMPORTANCE_HIGH);
|
NotificationManager.IMPORTANCE_HIGH);
|
||||||
warning.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
warning.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
||||||
nm.createNotificationChannel(warning);
|
nm.createNotificationChannel(warning);
|
||||||
|
|
||||||
|
// Error
|
||||||
NotificationChannel error = new NotificationChannel(
|
NotificationChannel error = new NotificationChannel(
|
||||||
"error",
|
"error",
|
||||||
getString(R.string.channel_error),
|
getString(R.string.channel_error),
|
||||||
|
@ -347,6 +354,7 @@ public class ApplicationEx extends Application {
|
||||||
error.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
error.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
||||||
nm.createNotificationChannel(error);
|
nm.createNotificationChannel(error);
|
||||||
|
|
||||||
|
// Contacts grouping
|
||||||
NotificationChannelGroup group = new NotificationChannelGroup(
|
NotificationChannelGroup group = new NotificationChannelGroup(
|
||||||
"contacts",
|
"contacts",
|
||||||
getString(R.string.channel_group_contacts));
|
getString(R.string.channel_group_contacts));
|
||||||
|
|
Loading…
Reference in a new issue