feat: implement notification badge using markers from @sk22.

Thank you a lot man! This improvement is amazing
This commit is contained in:
sk
2023-03-20 20:52:20 -03:00
committed by LucasGGamerM
parent 9d60924512
commit 5395855775
15 changed files with 174 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
package org.joinmastodon.android.events;
public class AllNotificationsSeenEvent {
}

View File

@@ -0,0 +1,8 @@
package org.joinmastodon.android.events;
public class NotificationReceivedEvent {
public String id;
public NotificationReceivedEvent(String id) {
this.id = id;
}
}