BeatBridge runs a lightweight background service that watches for your chosen Bluetooth device to connect. The instant it does — your car speakers, headphones, or any paired device — BeatBridge fires a media play event to resume whatever you were last listening to in Spotify, YouTube Music, Pocket Casts, or any other media app.
No logins. No accounts. No internet. Just music.
- One-tap setup — pick your device from the paired devices list and you're done
- Works with any media app — dispatches a standard Android media key event so any player responds
- Persistent monitoring — foreground service keeps watching even after you close the app
- Battery-conscious — no polling; wakes only on Bluetooth ACL connection events
- Fully offline — zero network permissions, zero tracking
- Open source — GPL-3.0, available on F-Droid
git clone https://github.com/brandonp2412/BeatBridge.git
cd BeatBridge
./gradlew assembleRelease
# APK → app/build/outputs/apk/release/app-release-unsigned.apkRequirements: JDK 17, Android SDK with API 36.
User selects device
│
▼
BluetoothMonitorService starts (foreground)
│
└─ registers BroadcastReceiver for ACTION_ACL_CONNECTED
│
▼
Device connects? ──No──▶ keep waiting
│
Yes
│
▼
Address matches selected? ──No──▶ ignore
│
Yes
│
▼
AudioManager.dispatchMediaKeyEvent(MEDIA_PLAY)
│
▼
Music resumes in active media session ♪
# Unit tests
./gradlew test
# Instrumented tests (requires connected device or emulator)
./gradlew connectedAndroidTest
# Debug build
./gradlew assembleDebug
# Release build
./gradlew assembleReleasePull requests are welcome. Please:
- Fork the repo and create a branch:
git checkout -b feature/my-change - Make your changes and add/update tests as needed
- Ensure
./gradlew testpasses - Open a PR with a clear description
BeatBridge is designed to meet F-Droid inclusion requirements:
- GPL-3.0 licensed
- No proprietary dependencies (only AndroidX + Google Material)
- No network access, no tracking
- Reproducible builds from source via
./gradlew assembleRelease - Fastlane metadata in
fastlane/metadata/android/
BeatBridge — Auto-play music when your Bluetooth device connects
Copyright (C) 2026 BeatBridge Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Full text: LICENSE
