Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neXenio/adb-util
Electron app for Android developers, providing a GUI for common ADB operations
https://github.com/neXenio/adb-util
adb android android-development electron-app
Last synced: about 1 month ago
JSON representation
Electron app for Android developers, providing a GUI for common ADB operations
- Host: GitHub
- URL: https://github.com/neXenio/adb-util
- Owner: neXenio
- License: apache-2.0
- Created: 2017-09-27T14:07:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-07T05:04:37.000Z (over 4 years ago)
- Last Synced: 2024-08-02T20:43:41.044Z (4 months ago)
- Topics: adb, android, android-development, electron-app
- Language: JavaScript
- Homepage:
- Size: 1.02 MB
- Stars: 59
- Watchers: 23
- Forks: 12
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-hacking-lists - neXenio/adb-util - Electron app for Android developers, providing a GUI for common ADB operations (JavaScript)
README
[![WIP](https://img.shields.io/badge/work%20in%20progress-yes-green.svg)](https://github.com/neXenio/adb-util) [![GitHub license](https://img.shields.io/github/license/neXenio/adb-util.svg)](https://github.com/neXenio/adb-util/blob/master/LICENSE)
# ADB Utility
An [Electron] application for Android developers, providing a GUI for common [ADB] operations.
![screenshot]
The tool offers some convenience utilities to speed up the development, especially when handling multiple devices. Features:
- [x] Listing connected devices (`adb devices`)
- [x] Discovering network devices with the ADB deamon (`nmap -p 5555`)
- [ ] Connecting and disconnecting devices (`adb connect`, ...)
- [ ] Toggling connections between USB and TCP (`adb usb`, ...)
- [x] Executing shell commands (`adb shell`)
- [x] Fetching features (`pm list features`)
- [x] Fetching properties (`getprop`)
- [x] Fetching settings (`settings get`)
- [x] Fetching network configuration (`ip addr show wlan0`)
- [ ] Starting and stopping applications (`am start`, ...)
- [ ] Clearing application data (`pm clear`)
- [ ] Grabbing screenshots (`screencap`)
- [ ] Installing and uninstalling applications (`adb install`, ...)
- [ ] Pushing and pulling files and folders
- [ ] Viewing Logcat output (`adb logcat`)You can check the progress of new features in the [project] section.
## Requirements
Make sure that `adb` is available in your `PATH`. You can check if that's the case by opening a terminal and executing `adb version`.
## Downloads
If you don't want to build the project yourself, head over to the [releases] section and grab an executable from there.
## Development
#### Deploying
```sh
$ npm install # install dependencies
$ npm start # support for reloading views, restarting electron
```#### Building Releases
```sh
$ npm run build # all
$ npm run build-osx # osx(64)
$ npm run build-win # win(32, 64)
```#### Contributing
Please checkout the [open issues] and the [project] section. Looking forward to your pull requests!
## Build With
This tool is being built using [Electron], powered by [react] and [redux]. It heavily relies on the [adbkit] module.
**Note** regarding code quality: This tool has been created by people that just got started with this technology stack. Although we try to follow best practices, you might not want to use this project as a reference.
## License
[Apache License V2](LICENSE)
Copyright © neXenio GmbH.
[electron]: https://github.com/electron/electron
[react]: https://github.com/facebook/react
[redux]: https://github.com/reactjs/redux
[adbkit]: https://github.com/openstf/adbkit
[adb]: https://developer.android.com/studio/command-line/adb.html
[screenshot]: assets/screenshot.png
[project]: https://github.com/neXenio/adb-util/projects/1
[open issues]: https://github.com/neXenio/adb-util/issues
[releases]: https://github.com/neXenio/adb-util/releases