DEV Community

José Miguel Moreno
José Miguel Moreno

Posted on • Edited on

1

How To Disable Bluetooth on Android TV

Modern (and not-so-modern) Android TVs often come with built-in Bluetooth for connecting other smart devices, such as voice-enabled remotes. This is nice.

However, for reasons beyond my understanding, Google and most TV manufacturers decided to leave Bluetooth discoverability always enabled on the device with no option to turn it off, resulting in annoying neighbors spamming consent pairing dialogs on the TV whenever they want. This is not nice.

The sensible solution would be for manufacturers to add an option to disable Bluetooth in the TV settings, but unfortunately that's not how modern software development works.

Since this is not an isolated problem, other people have come up with alternative solutions that involve installing an app:

Of course, my Android TV does not support that app (thanks, market fragmentation!), so here's my solution to disable Bluetooth:

  1. Enable USB Debugging on your TV just like any other Android device
  2. Connect to the TV through the network: adb connect <tv-ip-address>
  3. Run adb shell svc bluetooth disable

2025 Update

I came across another Reddit comment that suggests turning off Bluetooth altogether:

adb shell cmd package disable-user com.android.bluetooth
Enter fullscreen mode Exit fullscreen mode

Strange as it may sound, it actually works.

Redis image

Short-term memory for faster
AI agents

AI agents struggle with latency and context switching. Redis fixes it with a fast, in-memory layer for short-term context—plus native support for vectors and semi-structured data to keep real-time workflows on track.

Start building

Top comments (0)

Tiger Data image

🐯 🚀 Timescale is now TigerData: Building the Modern PostgreSQL for the Analytical and Agentic Era

We’ve quietly evolved from a time-series database into the modern PostgreSQL for today’s and tomorrow’s computing, built for performance, scale, and the agentic future.

So we’re changing our name: from Timescale to TigerData. Not to change who we are, but to reflect who we’ve become. TigerData is bold, fast, and built to power the next era of software.

Read more

👋 Kindness is contagious

Explore this insightful write-up embraced by the inclusive DEV Community. Tech enthusiasts of all skill levels can contribute insights and expand our shared knowledge.

Spreading a simple "thank you" uplifts creators—let them know your thoughts in the discussion below!

At DEV, collaborative learning fuels growth and forges stronger connections. If this piece resonated with you, a brief note of thanks goes a long way.

Okay