diff --git a/README.md b/README.md index 3f1a68d4..74f10c7d 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,19 @@ https://github.com/hassio-addons/repository-beta ## Add-ons provided by this repository +### ✓ [ADB - Android Debug Bridge][addon-adb] + +![Latest Version][adb-version-shield] +![Supports armhf Architecture][adb-armhf-shield] +![Supports aarch64 Architecture][adb-aarch64-shield] +![Supports amd64 Architecture][adb-amd64-shield] +![Supports i386 Architecture][adb-i386-shield] +![Docker Pulls][adb-pulls-shield] + +The Android Debug Bridge server program + +[:books: ADB - Android Debug Bridge add-on documentation][addon-doc-adb] + ### ✓ [AdGuard Home][addon-adguard] ![Latest Version][adguard-version-shield] @@ -469,6 +482,7 @@ You could also open an issue here on GitHub. Note, we use a separate GitHub repository for each add-on. Please ensure you are creating the issue on the correct GitHub repository matching the add-on. +- [Open an issue for the add-on: ADB - Android Debug Bridge][adb-issue] - [Open an issue for the add-on: AdGuard Home][adguard-issue] - [Open an issue for the add-on: AirCast][aircast-issue] - [Open an issue for the add-on: AirSonos][airsonos-issue] @@ -549,6 +563,15 @@ 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. +[addon-adb]: https://github.com/hassio-addons/addon-adb/tree/v0.1.0 +[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/v0.1.0/README.md +[adb-issue]: https://github.com/hassio-addons/addon-adb/issues +[adb-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg +[adb-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/adb.svg +[adb-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[adb-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[adb-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[adb-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [addon-adguard]: https://github.com/hassio-addons/addon-adguard-home/tree/v0.1.1 [addon-doc-adguard]: https://github.com/hassio-addons/addon-adguard-home/blob/v0.1.1/README.md [adguard-issue]: https://github.com/hassio-addons/addon-adguard-home/issues diff --git a/adb/CHANGELOG.md b/adb/CHANGELOG.md new file mode 100644 index 00000000..f025f5cd --- /dev/null +++ b/adb/CHANGELOG.md @@ -0,0 +1 @@ +🎉 Initial add-on release \ No newline at end of file diff --git a/adb/README.md b/adb/README.md new file mode 100644 index 00000000..8d9e30c3 --- /dev/null +++ b/adb/README.md @@ -0,0 +1,49 @@ +# Community Hass.io Add-ons: Android Debug Bridge + +[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] + +[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] + +[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] + +[![Support my work on Patreon][patreon-shield]][patreon] + +The Android Debug Bridge server program. + +## About + +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. + +[Click here for the full documentation][docs] + +## WARNING! THIS IS A BETA VERSION! + +This Hass.io Add-ons repository contains beta releases of add-ons. + +- They might stop working at any time. +- They could have a negative impact on your system. + +This repository was created for: + +- Anybody willing to test. +- Anybody interested in trying out upcoming add-ons or add-on features. + +If you are more interested in stable releases of our add-ons: + + + +[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg +[buymeacoffee]: https://www.buymeacoffee.com/frenck +[discord-shield]: https://img.shields.io/discord/478094546522079232.svg +[discord]: https://discord.me/hassioaddons +[docs]: https://github.com/hassio-addons/addon-adb/blob/v0.1.0/README.md +[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg +[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-adb-android-debug-bridge/96375?u=frenck +[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg +[patreon-shield]: https://www.frenck.nl/images/patreon.png +[patreon]: https://www.patreon.com/frenck +[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg +[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg +[release]: https://github.com/hassio-addons/addon-adb/tree/v0.1.0 \ No newline at end of file diff --git a/adb/config.json b/adb/config.json new file mode 100644 index 00000000..abca28b6 --- /dev/null +++ b/adb/config.json @@ -0,0 +1,41 @@ +{ + "name": "ADB - Android Debug Bridge", + "version": "0.1.0", + "slug": "adb", + "description": "The Android Debug Bridge server program", + "url": "https://github.com/hassio-addons/addon-adb", + "startup": "services", + "ports": { + "5037/tcp": 5037 + }, + "arch": [ + "aarch64", + "amd64", + "armhf", + "i386" + ], + "map": [ + "config:rw", + "share:rw", + "ssl:rw" + ], + "boot": "auto", + "hassio_api": true, + "hassio_role": "default", + "options": { + "devices": [], + "reconnect_timeout": 90 + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?", + "keys_path": "str?", + "devices": [ + "str" + ], + "reconnect_timeout": "int" + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}" + }, + "image": "hassioaddons/adb" +} \ No newline at end of file diff --git a/adb/icon.png b/adb/icon.png new file mode 100644 index 00000000..4d0d0b34 Binary files /dev/null and b/adb/icon.png differ diff --git a/adb/logo.png b/adb/logo.png new file mode 100644 index 00000000..614b7fc7 Binary files /dev/null and b/adb/logo.png differ