|
|
@ -21,6 +21,7 @@ package eu.faircode.email;
|
|
|
|
|
|
|
|
|
|
|
|
import android.app.Notification;
|
|
|
|
import android.app.Notification;
|
|
|
|
import android.app.NotificationChannel;
|
|
|
|
import android.app.NotificationChannel;
|
|
|
|
|
|
|
|
import android.app.NotificationChannelGroup;
|
|
|
|
import android.app.NotificationManager;
|
|
|
|
import android.app.NotificationManager;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Context;
|
|
|
|
|
|
|
|
|
|
|
@ -68,9 +69,14 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
|
|
|
|
void createNotificationChannel(Context context) {
|
|
|
|
void createNotificationChannel(Context context) {
|
|
|
|
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) context.getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NotificationChannelGroup group = new NotificationChannelGroup(accountName, accountName);
|
|
|
|
|
|
|
|
nm.createNotificationChannelGroup(group);
|
|
|
|
|
|
|
|
|
|
|
|
NotificationChannel channel = new NotificationChannel(
|
|
|
|
NotificationChannel channel = new NotificationChannel(
|
|
|
|
getNotificationChannelId(id), accountName + "/" + getDisplayName(context),
|
|
|
|
getNotificationChannelId(id), getDisplayName(context),
|
|
|
|
NotificationManager.IMPORTANCE_HIGH);
|
|
|
|
NotificationManager.IMPORTANCE_HIGH);
|
|
|
|
|
|
|
|
channel.setGroup(accountName);
|
|
|
|
channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
|
|
|
channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
|
|
|
|
nm.createNotificationChannel(channel);
|
|
|
|
nm.createNotificationChannel(channel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|