ws-scrcpy
ws-scrcpy copied to clipboard
Is it possible using "adb connect" like in STF
I don't use STF, please describe in more detail.
in stf user can use adb connect <ip_host:port>
after client using adb connect
, connected devices display in client when using adb devices
user:~ user$ adb devices
List of devices attached
user:~ user$ adb connect 172.31.64.16:7417
already connected to 172.31.64.16:7417
user:~ user$ adb devices
List of devices attached
172.31.64.16:7417 device
user:~ user$ adb disconnect 172.31.64.16:7417
disconnected 172.31.64.16:7417
user:~ user$ adb devices
List of devices attached
user:~ user$
ws-scrcpy works with devices connected over tcp. They should appear in the device list with others.
Or you want to "run" adb connect
from the UI?
i want running adb connect
from other machine in the same network. the UI provide <host_ip>:<port>
information
I still don't understand. Do you want this feature (qoute from STF README)?
- Use
adb connect
to connect to a remote device as if it was plugged in to your computer, regardless of ADB mode and whether you're connected to the same network
- Run any
adb
command locally, including shell access- Android Studio and other IDE support, debug your app while watching the device screen on your browser
- Supports Chrome remote debug tools
yes, like that feature. it will be helpful if has that feature
Answering the original question: no, this feature is not implemented.
But after looking at the STF implementaion, it is pretty easy to implement: they use an undocumented method createTcpUsbBridge
from adbkit.
will this feature help to implement #https://github.com/NetrisTV/ws-scrcpy/issues/143