There are 2 applications, which show notifications, which you receive on your android phone, on your Windows PC.
NotificationsToGit
sends notifications fromandroid
togit
(we usegit
as one of the bests database).GitToWindows
polls configuredgit
repo and shows notifications onWindows
.GitToMacOs
polls configuredgit
repo and shows notifications onMacOs
.
- It is free.
- It is easy to support several clients, which read the same database (let's say you have
Windows PC
, andWindows Laptop
; you want to get notifications on all devices; this case is supported automatically, because each device has own local git/database). - If you need, you can get log of ordered events (a-ka notifications) out of the box, thanks to
git log
. - You can easily implement
at least once
semantic (let's say you performgit fetch origin
, after that you send notification to user, and finally move event log cursor (git merge origin/main
).