🎉 Release of add-on ADB - Android Debug Bridge 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-02-02 21:17:22 +00:00
parent 73987378e1
commit 5e09b68ea6
6 changed files with 114 additions and 0 deletions

View file

@ -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

1
adb/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial add-on release

49
adb/README.md Normal file
View file

@ -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:
<https://github.com/hassio-addons/repository>
[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

41
adb/config.json Normal file
View file

@ -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"
}

BIN
adb/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
adb/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB