disable notification badges ("1" icons)

This commit is contained in:
Philipp Crocoll
2018-09-26 05:51:12 +02:00
parent 1490ebce03
commit bfdb1a8f62

View File

@@ -338,7 +338,6 @@ namespace keepass2android
LockDatabase(false);
activity.SetResult(KeePass.ExitReloadDb);
activity.Finish();
//todo: return?
}
AskForReload(activity);
}
@@ -977,6 +976,7 @@ namespace keepass2android
mChannel.EnableLights(false);
mChannel.EnableVibration(false);
mChannel.SetSound(null, null);
mChannel.SetShowBadge(false);
mNotificationManager.CreateNotificationChannel(mChannel);
}
@@ -989,6 +989,7 @@ namespace keepass2android
mChannel.EnableLights(false);
mChannel.EnableVibration(false);
mChannel.SetSound(null, null);
mChannel.SetShowBadge(false);
mNotificationManager.CreateNotificationChannel(mChannel);
}
@@ -1001,6 +1002,7 @@ namespace keepass2android
mChannel.EnableLights(false);
mChannel.EnableVibration(false);
mChannel.SetSound(null, null);
mChannel.SetShowBadge(false);
mNotificationManager.CreateNotificationChannel(mChannel);
}
}