diff --git a/README.md b/README.md index 2ef0cc61b..862345112 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,19 @@ https://github.com/hassio-addons/repository-edge ## 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] @@ -503,6 +516,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] @@ -586,6 +600,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/b760618 +[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/b760618/README.md +[adb-issue]: https://github.com/hassio-addons/addon-adb/issues +[adb-version-shield]: https://img.shields.io/badge/version-b760618-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/fd0e773 [addon-doc-adguard]: https://github.com/hassio-addons/addon-adguard-home/blob/fd0e773/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 000000000..2e40c9cf4 --- /dev/null +++ b/adb/CHANGELOG.md @@ -0,0 +1,3 @@ +2019/02/01 22:25 UTC - [b760618](https://github.com/hassio-addons/addon-adb/commit/b760618baf5e92c4cac164ad1bb1dd9fc9ee9290) by [@frenck](https://github.com/frenck) +> :sparkles: Initial add-on code + diff --git a/adb/README.md b/adb/README.md new file mode 100644 index 000000000..0eeb18b05 --- /dev/null +++ b/adb/README.md @@ -0,0 +1,52 @@ +# 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 AN EDGE VERSION! + +This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds +add-ons are based upon the latest development version. + +- They may not work at all. +- 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. +- Developers. + +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/b760618/README.md +[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg +[forum]: https://community.home-assistant.io/?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-b760618-blue.svg +[release]: https://github.com/hassio-addons/addon-adb/tree/b760618 \ No newline at end of file diff --git a/adb/config.json b/adb/config.json new file mode 100644 index 000000000..82b02b87a --- /dev/null +++ b/adb/config.json @@ -0,0 +1,42 @@ +{ + "name": "ADB - Android Debug Bridge", + "version": "b760618", + "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", + "share", + "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)$)?", + "private_key": "str?", + "public_key": "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 000000000..4d0d0b340 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 000000000..614b7fc73 Binary files /dev/null and b/adb/logo.png differ