diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/AppNotificationType.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/AppNotificationType.java index 339508172..fec15f9cd 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/AppNotificationType.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/AppNotificationType.java @@ -72,6 +72,9 @@ public class AppNotificationType extends HashMap { // Signal put("org.thoughtcrime.securesms", NotificationType.SIGNAL); + // Wire + put("com.wire", NotificationType.WIRE); + // Telegram put("org.telegram.messenger", NotificationType.TELEGRAM); put("org.telegram.messenger.beta", NotificationType.TELEGRAM); diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/NotificationType.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/NotificationType.java index ba86718d8..759a4a315 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/NotificationType.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/model/NotificationType.java @@ -55,6 +55,7 @@ public enum NotificationType { BUSINESS_CALENDAR(PebbleIconID.TIMELINE_CALENDAR, PebbleColor.BlueMoon), RIOT(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.LavenderIndigo), SIGNAL(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon), + WIRE(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon), SKYPE(PebbleIconID.NOTIFICATION_SKYPE, PebbleColor.VividCerulean), SLACK(PebbleIconID.NOTIFICATION_SLACK, PebbleColor.Folly), SNAPCHAT(PebbleIconID.NOTIFICATION_SNAPCHAT, PebbleColor.Icterine), @@ -105,6 +106,7 @@ public enum NotificationType { case FACEBOOK_MESSENGER: case RIOT: case SIGNAL: + case WIRE: case TELEGRAM: case THREEMA: case KONTALK: diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/btle/BLETypeConversions.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/btle/BLETypeConversions.java index 18f33f0ae..67a75184e 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/btle/BLETypeConversions.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/btle/BLETypeConversions.java @@ -286,6 +286,7 @@ public class BLETypeConversions { case LINE: case RIOT: case SIGNAL: + case WIRE: case SKYPE: case SNAPCHAT: case TELEGRAM: diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/huami/HuamiIcon.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/huami/HuamiIcon.java index 9c907c973..ec027fe3f 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/huami/HuamiIcon.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/huami/HuamiIcon.java @@ -98,6 +98,7 @@ public class HuamiIcon { case LINE: return LINE; case SIGNAL: + case WIRE: return CHAT_BLUE_13; case TWITTER: return TWITTER; diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/zetime/ZeTimeDeviceSupport.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/zetime/ZeTimeDeviceSupport.java index d18ace4fa..a87830207 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/zetime/ZeTimeDeviceSupport.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/zetime/ZeTimeDeviceSupport.java @@ -834,6 +834,7 @@ public class ZeTimeDeviceSupport extends AbstractBTLEDeviceSupport { case CONVERSATIONS: case RIOT: case SIGNAL: + case WIRE: case TELEGRAM: case THREEMA: case KONTALK: diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/util/NotificationUtils.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/util/NotificationUtils.java index cc697cc41..e7e8508b9 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/util/NotificationUtils.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/util/NotificationUtils.java @@ -44,6 +44,7 @@ public class NotificationUtils { case LINE: case RIOT: case SIGNAL: + case WIRE: case SKYPE: case SNAPCHAT: case TELEGRAM: