mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-07 12:41:34 +00:00
🎉 Release of add-on ADB - Android Debug Bridge 0.1.0
This commit is contained in:
parent
48b1efa5b9
commit
db84d1a659
6 changed files with 98 additions and 0 deletions
1
adb/CHANGELOG.md
Normal file
1
adb/CHANGELOG.md
Normal file
|
@ -0,0 +1 @@
|
|||
🎉 Initial add-on release
|
33
adb/README.md
Normal file
33
adb/README.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# 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]
|
||||
|
||||
[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
41
adb/config.json
Normal 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
BIN
adb/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
BIN
adb/logo.png
Normal file
BIN
adb/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 140 KiB |
Loading…
Add table
Add a link
Reference in a new issue