this post was submitted on 08 Mar 2025
15 points (100.0% liked)

Voyager

6081 readers
75 users here now

The official lemmy community for Voyager, an open source, mobile-first client for lemmy.

Download on App Store

Download on Play Store

Use as a Web App

Download on F-Droid

Rules

  1. Be nice.
  2. lemmy.world instance policy

Sponsor development! 👇

Number of sponsors badge

💙

founded 2 years ago
MODERATORS
 

Maybe I'm being stupid but where are the notification settings?

I cant see anything in the app, in droid settings it looks as though the permissions haven't been requested?

Am on GrapheneOS if that helps.

top 13 comments
sorted by: hot top controversial new old
[–] aeharding@vger.social 1 points 7 hours ago
[–] acockworkorange@mander.xyz 14 points 1 day ago (4 children)

Notifications in mobile apps aren’t easy. A developer can’t just write code for the app to poll the server every x minutes. When the app isn’t at the foreground, it’s usually frozen and can’t execute any code. So, to get notifications, the app must rely on the host operating system and must have a server running somewhere to talk to the OS. Servers cost money, so now the developer must charge something from users, or sell their data, etc.

So, rejoice on the fact that Voyager is putting you in control of your data, ethically. And just check the app every now and then.

[–] surewhynotlem@lemmy.world 1 points 6 hours ago

I think in Android you can have background tasks that do the polling and alerting. No need for a separate server, but you do need to disable battery optimization for the app.

[–] ClassifiedPancake@discuss.tchncs.de 1 points 1 day ago* (last edited 1 day ago) (1 children)

So charge money for a notifications feature, what’s the big deal? If people don’t want it they don’t have to pay.

[–] acockworkorange@mander.xyz 1 points 22 hours ago* (last edited 22 hours ago)

If I were an open source developer coding for fun, I wouldn’t want to bother setting up a payment system and the whole nine yards that come with it. Sounds boring as fuck.

But hey, it’s open source, so why don’t you do it?

[–] SheenSquelcher@lemm.ee 4 points 1 day ago (1 children)

I wasn't critising, I was just asking "where are the notifications"

[–] acockworkorange@mander.xyz 7 points 1 day ago (1 children)

I didn’t think you were criticizing. I’m just explaining why you won’t see them.

[–] BigDiction@lemmy.world 2 points 1 day ago

These are super helpful replies. There’s an influx of why doesn’t this platform work like a decade + of monetized tech stack.

[–] Cris16228@lemmy.today 1 points 1 day ago (1 children)

Can you do something like Boost (or others) for reddit that checks every X mins? Not sure if uses Google Notification system (forgot the name) but it's doable..?

[–] acockworkorange@mander.xyz 1 points 1 day ago (1 children)

I can’t, since I’m not a voyager developer. But as far as I know you have to rely on some notification system. Not sure if this can be had for free, but I know Google’s is very much not privacy respecting - which is why privacy focused phone OSs don’t bundle it.

[–] Cris16228@lemmy.today 2 points 1 day ago* (last edited 1 day ago) (1 children)

No, I mean the dev can use this approach to make the notifications work

Yeah, fuck Google btw

[–] acockworkorange@mander.xyz 1 points 1 day ago

I wasn’t clear whether you thought I was part of the team or not, so I decided to clarify. But yeah, it’s a common issue among open source apps.

[–] Deemo@bookwormstory.social 4 points 1 day ago

You could create a DIY notification system if you want. In the past using a old Mac mini I had a script that would check new notifications from Lemmy rss feed if I recived an notification from Lemmy and then send a push notification to my phone using ntfy.

The script was janky it used apple script to trigger a apple short cut that sent the notification (sending a post request to ntfy).

I'm sure there is probably a more elegant way to do it.

Alternatively you could set up a RSS reader that polls Lemmy every so often to send notications.