From 684af9a0406bcb5b5f65e271d71e4aaeb5b9fb00 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 22 Jun 2025 13:06:37 +0000 Subject: [PATCH] add helpful adb commands to the readme --- crawler/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/crawler/README.md b/crawler/README.md index e1b62d8..0312570 100644 --- a/crawler/README.md +++ b/crawler/README.md @@ -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 +```