Stop Trusting Privacy Policies. Just Delete the Internet.

You know the exact feeling. A client sends you a spreadsheet. A contractor sends a PowerPoint. You tap the file on your Android phone, and the system prompts you: ‘Which app would you like to use to open this?’

You look at your options. You can either install a 400MB monstrosity of an office suite that demands you create an account and sign in, or you can download a ‘lightweight’ free viewer that immediately asks for access to your entire phone’s storage. We both know what happens next: that ‘free’ viewer uploads your file to a server somewhere in the cloud to render it, and your private data is now someone else’s property.

It’s digital extortion. We have been conditioned to trade our privacy just to look at a document on the devices we supposedly own.

But a 14MB open-source app called Gander just broke the entire model. It is an Android file viewer that opens PDFs, Word, Excel, PowerPoint, images, video, and code. And it asks for absolutely zero permissions. Not storage. Not location. Not even the INTERNET permission.

Trust isn’t a legal document. It’s a technical constraint.

The developer behind Gander understood something that every Big Tech company deliberately obscures: you cannot hack what isn’t there. By removing the INTERNET permission from the app’s manifest, the Android operating system itself guarantees that the app is physically incapable of sending your files anywhere.

There is no sneaky background upload. No telemetry. No ‘anonymous data collection.’ The OS acts as the ultimate bouncer, enforcing user sovereignty in a way that no 50-page privacy policy ever could. If an app doesn’t have the keys to the door, it can’t sneak your furniture out at 2 AM.

To make this work, Gander doesn’t call out to the cloud. It uses bundled, offline libraries to render files locally. Office formats are handled by JavaScript libraries running right inside a local WebView. The work happens entirely on your device, in your hands.

But here is the twist: to achieve this absolute, verifiable privacy, Gander had to make a deliberate sacrifice.

It is a viewer only. Complex PowerPoint charts might come out looking a bit rough. Spreadsheet charts aren’t drawn. Ancient binary .doc and .ppt files are completely unsupported. In a tech industry obsessed with ‘comprehensive feature support’ and ‘endless backwards compatibility,’ this sounds like a failure. It’s not. It’s a statement.

True innovation isn’t writing better code. It’s designing a philosophy where betrayal is physically impossible.

The trade-off between feature bloat and absolute privacy is the most important design decision an engineer can make today. Gander chose trust over flexibility. It decided that a file viewer’s primary job isn’t to perfectly render a 15-year-old macro-enabled spreadsheet—it’s to respect the user.

In an era where every app is a vacuum cleaner for your personal data, choosing to build a tool that simply cannot connect to the outside world is a radical act of defiance. It proves that we don’t have to accept data leakage as the cost of doing business on our phones.

Your files are yours alone. No server. No upload. No spying. Just local viewing that actually respects your privacy.

The next time an app demands access to your entire digital life just to open a PDF, remember that it doesn’t have to be this way. The technology to completely lock down your data already exists. It just requires developers brave enough to cut the cord.

FAQ

Q: If the app has no internet access, how does it actually render complex Office files?

A: It does all the heavy lifting locally. Gander bundles the necessary rendering libraries—like Pdfium for PDFs and JavaScript libraries for Office formats—directly inside the app. It processes everything in a local WebView, meaning your phone's hardware does the work, not a remote server.

Q: Does this mean I can finally uninstall my 400MB office suite?

A: For viewing, yes. But be aware of the trade-off: Gander is strictly a viewer. It won't perfectly render complex PowerPoint charts, it ignores spreadsheet graphs, and it doesn't support ancient binary .doc files. It's for quickly and safely viewing files, not editing them.

Q: Isn't lacking support for old binary formats and complex charts a massive flaw?

A: Only if you prioritize feature bloat over privacy. The developer deliberately sacrificed 'comprehensive support' to maintain an absolute zero-permission, zero-internet constraint. It's a design philosophy: trust and privacy are more important than perfectly rendering a 15-year-old macro-enabled spreadsheet.

📎 Source: View Source