通过adb设置模拟器的HTTP代理

连接雷电模拟器

.\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

posted @ 2024-05-27 19:38  小帅大王  阅读(365)  评论(0)    收藏  举报