1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-25 08:03:46 +02:00

Added notification type for business calendar

This commit is contained in:
Lukas Veneziano 2018-01-08 15:28:57 +01:00 committed by cpfeiffer
parent a0ee35fa4c
commit 781359afba
3 changed files with 5 additions and 0 deletions

View File

@ -125,6 +125,9 @@ public class AppNotificationType extends HashMap<String, NotificationType> {
// Microsoft Outlook
put("com.microsoft.office.outlook", NotificationType.OUTLOOK);
// Business Calendar
put("com.appgenix.bizcal", NotificationType.BUSINESS_CALENDAR);
// Yahoo Mail
put("com.yahoo.mobile.client.android.mail", NotificationType.YAHOO_MAIL);

View File

@ -51,6 +51,7 @@ public enum NotificationType {
LINKEDIN(PebbleIconID.NOTIFICATION_LINKEDIN, PebbleColor.CobaltBlue),
MAILBOX(PebbleIconID.NOTIFICATION_MAILBOX, PebbleColor.VividCerulean),
OUTLOOK(PebbleIconID.NOTIFICATION_OUTLOOK, PebbleColor.BlueMoon),
BUSINESS_CALENDAR(PebbleIconID.TIMELINE_CALENDAR, PebbleColor.BlueMoon),
RIOT(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.LavenderIndigo),
SIGNAL(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon),
SKYPE(PebbleIconID.NOTIFICATION_SKYPE, PebbleColor.VividCerulean),

View File

@ -78,6 +78,7 @@ public class HuamiIcon {
case GENERIC_SMS:
return WECHAT;
case GENERIC_CALENDAR:
case BUSINESS_CALENDAR:
return CALENDAR;
case FACEBOOK:
return FACEBOOK;