this post was submitted on 05 Jul 2026
11 points (70.4% liked)
Privacy
49788 readers
327 users here now
A place to discuss privacy and freedom in the digital world.
Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.
In this community everyone is welcome to post links and discuss topics related to privacy.
Some Rules
- Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post
- Don't promote proprietary software
- Try to keep things on topic
- If you have a question, please try searching for previous discussions, maybe it has already been answered
- Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience
- Be nice :)
Related communities
much thanks to @gary_host_laptop for the logo design :)
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Checked the merged manifest, so this is the real answer, not a guess: The app requests exactly one permission: INTERNET. That's it — needed to fetch the news feeds and article pages, and nothing else. No storage, location, contacts, camera, microphone, phone state, Bluetooth, or notification permissions. It doesn't request them because it doesn't do anything that would need them. Saved articles and settings live in the app's own private sandbox, which doesn't require a storage permission. The only other line you'll spot in the manifest is DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION at the signature protection level. That's not a user-facing permission and grants the app no access to anything — Android auto-generates it to lock the app's internal broadcast receivers to its own signing key. Every modern Android app targeting recent API levels has it; it's a security measure, not a capability. So if you install it and check, you should see a single permission: internet access. If it ever asks for more, something's wrong and I'd want to hear about it.