diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java index 81eaaf80..d4f6ed63 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java @@ -196,8 +196,11 @@ public class NotificationListener extends NotificationListenerService { } } - if (source.equals("com.moez.QKSMS") || source.equals("com.android.mms") || - source.equals("com.sonyericsson.conversations") || source.equals("com.android.messaging")) { + if (source.equals("com.moez.QKSMS") || + source.equals("com.android.mms") || + source.equals("com.sonyericsson.conversations") || + source.equals("com.android.messaging") || + source.equals("org.smssecure.smssecure")) { if (!"never".equals(sharedPrefs.getString("notification_mode_sms", "when_screen_off"))) { return; } @@ -236,6 +239,7 @@ public class NotificationListener extends NotificationListenerService { case "com.android.mms": case "com.android.messaging": case "com.sonyericsson.conversations": + case "org.smssecure.smssecure": notificationSpec.type = NotificationType.SMS; break; case "eu.siacs.conversations":