add helpful adb commands to the readme

This commit is contained in:
Viktor Barzin 2025-06-22 13:06:37 +00:00
parent bf79d3c977
commit 684af9a040
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863

View file

@ -24,3 +24,24 @@ Enable formatting using yap and the style file in this repo (there may be an eas
"yapf.args": ["--style", "/home/wizard/code/realestate-crawler/crawler/.style.yapf"]
}
```
ADB commands (from `/Applications/BlueStacks.app/Contents/MacOS`):
Set proxy
```
./hd-adb shell settings put global http_proxy 192.168.9.110:8080
```
Disable proxy:
```
/hd-adb shell settings put global http_proxy :0
```
Connect adb
```
./hd-adb connect 127.0.0.1:5555
```
Disconnect adb
```
/hd-adb disconnect
```