All Projects → vinicioslc → adb-interface-vscode

vinicioslc / adb-interface-vscode

Licence: MIT license
🔌 A tool that allows you to execute ADB.exe commands/actions without having to interact with the terminal.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to adb-interface-vscode

ethernally
Your scrcpy companion for Android wireless screen mirroring
Stars: ✭ 33 (+26.92%)
Mutual labels:  adb, wifi
adb-wifi-setting-manager
Control wifi connections on Android with adb
Stars: ✭ 31 (+19.23%)
Mutual labels:  adb, wifi
Debloat
Remove ads, bloatware and speed up your device.
Stars: ✭ 44 (+69.23%)
Mutual labels:  adb, debug
Remotedebug
Library for Arduino to debug projects over WiFi, with web app or telnet, with print commands like Serial Monitor
Stars: ✭ 467 (+1696.15%)
Mutual labels:  wifi, debug
wirebug
Toggle Wi-Fi debugging on Android without a USB cable (needs root)
Stars: ✭ 33 (+26.92%)
Mutual labels:  adb, wifi
esphome aux ac component
ESPHome component for AUX based air conditioners. Direct wifi control of HVAC by ESPHome and Home Assistant. HVAC status and command feedback available.
Stars: ✭ 62 (+138.46%)
Mutual labels:  wifi
CaptivePortalCheck
一个检测当前WIFI是否需要认证的小Demo
Stars: ✭ 41 (+57.69%)
Mutual labels:  wifi
finch
🖥 Debug menu library for Android apps with supports network activity logging and many other useful features.
Stars: ✭ 42 (+61.54%)
Mutual labels:  debug
browser-push
Complete workout and guidelines to add web push notifications support for your webapp without third-party notification provider
Stars: ✭ 67 (+157.69%)
Mutual labels:  debug
marfil
Marfil is an extension of the Aircrack-ng suite, used to assess WiFi network security. It allows to split the work of performing long running dictionary attacks among many computers.
Stars: ✭ 49 (+88.46%)
Mutual labels:  wifi
answer ai
go实现西瓜视频,花椒直播,冲顶大会,芝士超人等平台智能答题。
Stars: ✭ 65 (+150%)
Mutual labels:  adb
Vertx.Debugging
Debugging Utilities for Unity
Stars: ✭ 165 (+534.62%)
Mutual labels:  debug
ioTank
Indoor environment monitor based on Esp8266
Stars: ✭ 15 (-42.31%)
Mutual labels:  wifi
ATA-GUI
ATA GUI is a project to make ATA available to all the users. ATA GUI is an Advance Tool for Android™ powered by SDK Platform Tools.
Stars: ✭ 40 (+53.85%)
Mutual labels:  adb
hfeasy
HFeasy - firmware for HF-LPx100/LPx30 based devices
Stars: ✭ 35 (+34.62%)
Mutual labels:  wifi
dwarf import
This loads DWARF info from an open binary and propagates function names, arguments, and type info
Stars: ✭ 18 (-30.77%)
Mutual labels:  debug
ESP8266
ESP8266 WiFi module Library for Arduino
Stars: ✭ 31 (+19.23%)
Mutual labels:  wifi
ts-debug-example
use ts-node debug Typescript code in vsc without compiling
Stars: ✭ 19 (-26.92%)
Mutual labels:  debug
ducky
Chrome extension to overlay a (super adorable) rubber duck, as a virtual companion during rubber duck debugging.
Stars: ✭ 80 (+207.69%)
Mutual labels:  debug
deauther
An interactive command-line deauther for macOS.
Stars: ✭ 70 (+169.23%)
Mutual labels:  wifi

🔌 ADB Interface for VSCode

Build Status Visual Studio Marketplace Version GitHub Visual Studio Marketplace Installs Visual Studio Marketplace Rating (Stars)

Maintainability Rating Lines of Code Bugs Security Rating

This simple ADB wrapper try to makes easy connect to android devices over wifi, without console use, and do other things.

Chinese Guide 简体中文指南

You can help with Code or with Energy everthing are welcome ;)

Buy Me a Coffee at ko-fi.com

⚠️ ONLY TESTED IN WINDOWS (For while, you need have ADB Interface installed in your system)

status bar

Attach ADB to an Device via WIFI

  1. First connect your device trough USB
  2. Run ADB:📱 Disconnect from any devices
  3. And run ADB:📱 Reset connected devices port to :5555
  4. And Then ADB:📱 Connect to device IP enter your device (settings > status > ip address) IP address and be fine

status bar

Installing APK files throught ADB

  1. Pick apk file with command ADB:📱 Pick .APK file and install
  2. Allow ADB install on device screen
  3. Wait until copy de file and icon appear
  4. Now you can run the APP

Table of contents

Commands Available

  • ADB:📱 Reset connected devices port to :5555 (Open current device port with (equivalent adb tcpip 5555))
  • ADB:📱 Connect to device IP (Need type the IP from device (equivalent adb connect ${your ip}:5555))
  • ADB:📱 Disconnect from any devices (Disconnect ever device attached (equivalent adb disconnect))
  • ADB:📱 Connect to device from List (Show an list from devices attached to connect (equivalent adb devices))
  • ADB:📱 Pick .APK file and install (Install on current active device (Will prompt user on Android Screen))
  • ADB:📱 Setup custom ADB location (Configure location of ADB)
  • ADB:📱 Remove custom ADB location (Clear custom ADB location)
  • ADB:🔥 Enable Firebase events debug mode (Run firebase events in debug mode)
  • ADB:🔥 Disable Firebase events debug mode (Run firebase events in debug mode)
  • ADB:⚠️ Kill ADB server (Kill ADB Server runing (equivalent adb kill-server))

How it works

ADB location resolution

By default the extension is looking for ADB in the following locations:

  • Linux - $HOME/Android/Sdk
  • MacOS - $HOME/Library/Android/sdk/platform-tools
  • Windows - %USERPROFILE%\AppData\Local\Android\Sdk\platform-tools (if the %USERPROFILE% environment variable is not defined the path to the profile directory of the current user will be used as the starting point)

The extension will resolve the ADB location each time an ADB command is executed.

The ADB location can be customized using the Setup custom ADB location command. The custom ADB location can be cleared using the Remove custom ADB location command.

Tests

All done with Jest you can read more about here.

We need help to incrase test coverage report, if you can learn, send a pull request !

How to run tests:

➥ npm run test

You can also use the project alias that watch file changes while developing:

➥ npm run test:watch
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].