一、win11安装安卓apk原生应用,查看https://blog.csdn.net/qq_33704787/article/details/123658419https://blog.csdn.net/qq_33704787/article/details/123658419
主要是安装:Windows Subsystem for Android™ with Amazon Appstore
二、使用ABD工具设置网络代理:
1、链接
adb connect WSA的IP和端口
示例: adb connect 127.0.0.1:58526
2、设置代理
adb shell settings put global http_proxy ip:端口
3、关闭代理(无需重启)
adb shell settings put global http_proxy :0
4、停掉adb设备
adb kill-server
5、启动adb设备
adb start-server
6、显示所有设备
adb devices