透過adb設定模擬器的HTTP代理

王小帅帅帅呐發表於2024-05-27

連線雷電模擬器

.\adb connect 127.0.0.1:5555

獲取路由地址,一般為172.16.1.2(這裡我的筆記本顯示是172.16.1.1,但是未設定成功,那就用172.16.1.2)

.\adb -s 127.0.0.1:5555 shell 'ip route list table all scope global | cut -F3'
.\adb -s 127.0.0.1:5555 shell settings put global http_proxy 172.16.1.2:7890
.\adb disconnect 127.0.0.1:5555

清除代理

.\adb -s 127.0.0.1:5555 shell settings delete global http_proxy
.\adb -s 127.0.0.1:5555 shell settings delete global global_http_proxy_host
.\adb -s 127.0.0.1:5555 shell settings delete global global_http_proxy_port
.\adb -s 127.0.0.1:5555 reboot

相關文章