The Android Debug Bridge (ADB) is a client-server program used in Android application development. This add-on provides the server program and can be used to get full local control over your Android (TV) devices.
This add-on is in a deprecated state!
This add-on was created at the time, that the best solution for communicating with an Android device from Home Assistant, was using an Android Debug Bridge.
However, the time has changed. Right now, the Home Assistant project recommends using built-in Python implementation, which renders this add-on obsolete.
Additionally, this add-on will become problematic to maintain in the future, as the packages used are stalled.
Therefore, this add-on is now deprecated.
The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.
- Search for the "ADB - Android Debug Bridge" add-on in the Supervisor add-on store and install it.
- Ensure that your Android device has developer mode and network debugging enabled.
- Add the IP addresses of your device(s) to the add-on configuration.
- Start the "ADB - Android Debug Bridge" add-on.
- Check the logs of the add-on to see if everything went well.
- Ready to go!
Note: Remember to restart the add-on when the configuration is changed.
Example add-on configuration, with all available options:
log_level: info
devices:
- 192.168.1.123
- 192.168.1.100
reconnect_timeout: 90
keys_path: "/config/.androidkeys"
Note: This is just an example, don't copy and paste it! Create your own!
Allows you to provide a list of IP addresses (or hostnames) of devices to which the ADB server program connects.
The add-on will try to (re)connect to the listed devices after this timeout has passed. In case one of your devices goes offline and comes back online again the add-on will connect to it within this time setting.
The default is 90 seconds.
The log_level
option controls the level of log output by the addon and can
be changed to be more or less verbose, which might be useful when you are
dealing with an unknown issue. Possible values are:
trace
: Show every detail, like all called internal functions.debug
: Shows detailed debug information.info
: Normal (usually) interesting events.warning
: Exceptional occurrences that are not errors.error
: Runtime errors that do not require immediate action.fatal
: Something went terribly wrong. Add-on becomes unusable.
Please note that each level automatically includes log messages from a
more severe level, e.g., debug
also shows info
messages. By default,
the log_level
is set to info
, which is the recommended setting unless
you are troubleshooting.
Allows you to provide a custom path to where the private/public key pair is stored. This option is not listed by default and completely optional. If you omit this option, the add-on will generate and store a key pair for you internally.
If the provided directory is empty, the add-on will create
a new (fresh) key pair in the specified location.
You can also provide your own key pair, which must be named
adbkey
and adbkey.pub
(and stored in the specified location).
The keys_path
path must be in either /ssl
, /config
or /share
, subfolders
are allowed (e.g., /config/adb/mykeys
).
Your device must be running in developer & network debugging mode, to allow this add-on to connect.
To do this, follow these steps on your Android TV device:
- Press Home and go into Settings.
- Select and press "About" from the Settings menu.
- Scroll down to the "Build" information.
- Select and click on "Build" several times (6-10 times).
- A dialog appears, saying: "You are now a developer".
- Press Home and go into Settings again.
- Select and press "System Preferences" from the Settings menu.
- Select and press "Developer options".
- Scroll down to "Debugging".
- Turn on "Network debugging".
- Done!
Not all devices have the same procedure, so for your device, it might differ a bit. A quick search on Google would probably lead you towards a specific solution for your device.
This ADB add-on can be used with all Android-based devices, using the
androidtv
integration.
This is an example using an NVidia Shield with the ADB add-on:
# Example configuration.yaml entry
# Based on adding my NVidia Shield, which has IP 192.168.1.34.
media_player:
- platform: androidtv
host: 192.168.1.34
name: "NVidia Shield"
adb_server_ip: 127.0.0.1
adb_server_port: 5037
- There is a Chrome Extention/App called "ADB Chrome", which can connect to this add-on and actually sideload apps as well!
- Using the
androidtv
integration, you can send intents via theandroidtv.adb_command
service. - For more information, see the Android TV documentation.
- For examples, see @McFrojd's Gist with useful intents and lovelace example for a Nvidia Shield Remote.
- This add-on does support ARM-based devices, nevertheless, they must at least be an ARMv7 device. (Raspberry Pi 1 and Zero is not supported).
This repository keeps a change log using GitHub's releases functionality.
Releases are based on Semantic Versioning, and use the format
of MAJOR.MINOR.PATCH
. In a nutshell, the version will be incremented
based on the following:
MAJOR
: Incompatible or major changes.MINOR
: Backwards-compatible new features and enhancements.PATCH
: Backwards-compatible bugfixes and package updates.
Got questions?
You have several options to get them answered:
- The Home Assistant Community Add-ons Discord chat server for add-on support and feature requests.
- The Home Assistant Discord chat server for general Home Assistant discussions and questions.
- The Home Assistant Community Forum.
- Join the Reddit subreddit in /r/homeassistant
You could also open an issue here GitHub.
The original setup of this repository is by Franck Nijhof.
For a full list of all authors and contributors, check the contributor's page.
MIT License
Copyright (c) 2019-2021 Franck Nijhof
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.