Automatic sorting
Each notification is filed as information, promotion, action needed, conversation, or system the moment it arrives. You can correct the label, and set per-app rules.
Pushbin collects the notifications arriving on your Android phone, sorts them automatically, and keeps them findable. Card, bank, and pay alerts get read separately and turned into a spending log.
class
PushbinApp extends StatelessWidget {
const PushbinApp({super.key});
Widget build(BuildContext context) {
return MaterialApp(
theme: PushbinTheme.dark,
home: NotificationArchive(),
);
}
}
Notifications keep arriving and most are never read. The message that mattered gets buried under promotions, and once you swipe a notification away it is gone. Pushbin started from that one problem: notifications only ever pile up.
Grant notification access and everything that arrives afterwards is saved on your device. System notifications, ongoing ones, and duplicates are filtered out before they are ever stored.
Each notification is filed as information, promotion, action needed, conversation, or system the moment it arrives. You can correct the label, and set per-app rules.
Search by keyword, date range, or category, and narrow instantly with presets for no-promotions, action needed, payments and receipts, and deliveries.
At the end of the day it lists what needed action first, and sends a summary notification at a time you choose.
Finds appointments, payments, and deliveries inside your notifications and places them on a day-by-day timeline.
Shows which apps send how much, the share that is promotional, and what arrives overnight, then suggests which apps to trim.
Spots when the other person removes a message and keeps the original, with a badge.
Opens the original conversation straight from an SMS or KakaoTalk notification.
Attach a time and a note to a notification you cannot miss. If the text contains a time, it is offered as the default.
Card approvals, transfers, and pay confirmations are interpreted and filed as transactions. No receipt photos, no typing in amounts.
Pulls the amount, merchant, payment method, and time out of each alert.
When the card issuer and the pay app both notify you about one payment, it becomes one transaction.
Cancellations are matched to the original payment so your monthly totals stay right. Partial refunds are handled too.
Amounts that are not in your home currency are recorded with the currency kept distinct.
Transactions roll up into spending by period, by payment method, and by category.
Notification titles, bodies, and extracted schedules are encrypted with AES-256-GCM and stored only on your phone. Nothing is sent to a server or shared with anyone. You can withdraw notification access at any time in settings, and delete everything stored from inside the app.
Read the Privacy Policy