mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-15 11:31:16 +01:00
74e1598bf7
Currently this dismisses all notifications on the Phone-
10 lines
272 B
Java
10 lines
272 B
Java
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
|
|
|
public class GBDeviceEventDismissNotification extends GBDeviceEvent {
|
|
public int notificationID;
|
|
|
|
public GBDeviceEventDismissNotification() {
|
|
eventClass = EventClass.DISMISS_NOTIFICATION;
|
|
}
|
|
}
|