DEV Community

I Built a Messenger That Works Without the Internet - And It Changed How I Think About Privacy

A quiet experiment in Bluetooth, offline communication, and why we gave up too much when we handed our conversations to the cloud.

The last time I was truly unreachable, I was in a place with no cell signal and no Wi-Fi. And I realized something strange: I had no way to send a message to the person sitting three feet away from me - because every app on my phone needed the internet to do it. That felt wrong. We've built the most sophisticated communication technology in human history, and somehow it all routes through a handful of servers in Northern Virginia before reaching someone in the same room. So I built Bluetoosh.

The Premise: What If the Network Was Just… You and Me?

Bluetoosh is a peer-to-peer messenger that runs entirely over Bluetooth. No internet. No servers. No accounts. No cloud storage. Just two devices, talking to each other the way devices were always capable of doing - directly.

You open the app. You see who's nearby. You start a conversation. That's it. No phone number required. No email verification. No terms of service asking you to agree that your metadata might be used for advertising. The only network involved is the six feet of air between you and the other person.

Why Bluetooth?

Bluetooth is one of the most underrated communication protocols we carry around every day. Your phone already has it. Your laptop has it. Most people use it for headphones and nothing else. But Bluetooth is capable of much more. It can discover nearby devices, establish encrypted connections, and transfer data - all without touching the internet.

The range is roughly 10–30 meters in open space. That covers a room, a floor, a campsite. Bluetoosh uses both BLE (Bluetooth Low Energy) and Classic Bluetooth, plus Google Nearby Connections for mesh-style discovery. In practice, this means you can find people around you, chat, share files, and even make voice calls - all completely offline.

What It Actually Does

Here's what surprised me most while building this: offline communication doesn't have to mean limited communication. Bluetoosh supports:

  • One-to-one private conversations
  • Group chats with admin controls
  • Image, video, document, and voice note sharing (chunked file transfer over Bluetooth)
  • Voice calls (8kHz PCM audio streaming)
  • Video calls - a low-fps JPEG slideshow mode at around 2 frames per second, which sounds absurd until you're in a basement with no signal and it's the only thing that works

Everything is stored locally and encrypted with AES-256-CBC. The encryption keys live in your device's secure storage - iOS Keychain or Android EncryptedSharedPreferences. There is no server that could be hacked, no database that could be subpoenaed, no company that holds your keys.

If you want to wipe everything, there's a "Delete My Data" button that permanently erases all messages, media, keys, and your profile. It plays a pixel skull animation while it does it, which I think is the correct amount of drama for the occasion.

The Aesthetic: Why 8-Bit?

This one gets asked a lot. The app uses a retro 8-bit visual style - pixel art avatars, the "Press Start 2P" font, CRT scanline overlays. It looks like a video game from 1987.

The reasoning is simple: Bluetooth messenger apps exist in a weird cultural space. They're niche, they're technical, and they can feel cold or paranoid if you frame them wrong. The retro aesthetic makes the whole thing feel playful. It signals that this isn't a tool for people who are afraid of something - it's a tool for people who think differently about how communication should work. Privacy doesn't have to be grim. It can be fun.

Who Actually Needs This?

More people than you'd think.

  • Festival attendees whose carrier networks collapse under load
  • Hikers and campers in areas with no coverage
  • People in regions with internet restrictions, where messaging apps are monitored or blocked
  • Security researchers and journalists who need genuine air-gap communication
  • Teachers who want a simple local chat for a classroom exercise
  • Anyone who's ever been in a basement, a bunker, a rural cabin, or a crowded stadium and needed to reach someone five meters away

And increasingly: people who are simply tired of the assumption that every conversation must pass through someone else's infrastructure.

The Honest Trade-offs

I'm not going to pretend Bluetooth is a replacement for the internet. The bandwidth ceiling on Classic Bluetooth is around 720 Kbps. That's why video calls run at 2fps. That's why large file transfers take longer than you'd expect. That's why this isn't going to replace WhatsApp for your daily group chat.

The range is limited. The connection setup can be finicky depending on the device. And mesh networking over Bluetooth, while genuinely possible, is still a work in progress.

But here's the thing: those limitations are also the point. Bluetoosh is for the moments when the alternative is nothing. When you're somewhere the cloud can't reach. When you'd rather communicate imperfectly than not at all - or when you'd rather communicate privately than conveniently.

It's Open Source

The full source code is on GitHub. MIT licensed. Built in Flutter (Dart 3), so it runs on Android, iOS, Windows, macOS, and web from a single codebase.

I built this because I wanted it to exist. I'm sharing it because I think more people should think about what we've quietly given up by assuming every message needs a server.

Download

  • πŸͺŸ Windows: Microsoft Store
  • πŸ€– Android: Google Play
  • πŸ’» Source Code: github.com/6arshid/bluetoosh

No signup. No server. No nonsense. Just Bluetooth.

If this resonated with you - or if you've thought about communication, privacy, and infrastructure in similar ways - I'd love to hear from you. That's what Substack comments are for.

Comments

No comments yet. Start the discussion.