mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 09:29:38 +00:00
Add support for ADB server environment variables #64
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adelphes on 7/8/2020
ADB makes use of the following environment variables:
These variables are used to automatically specify how ADB should connect to its server instance.
135f4ab3dd/adb/commandline.cpp (1552)This change adds support for automatically using these if vscode is launched with these environment variables configured.
To support more remote adb/device configurations:
adbPorthas been replaced withadbSocketto allow the adb server hostname to be specified in the debug configuration.jdwpPorthas been added to allow the debugger connection port to be fixed (instead of choosing a random port on each launch).Smaller improvements:
traceis true.Fixes #95