Android studio使用这样的命令行启动模拟器:
/ Users / sergey / Library / Android / sdk / tools / emulator -avd Nexus_5_API_22_x86 -netspeed full -netdelay none
如何添加其他选项?我需要指定 -http-proxy 命令行参数
答案 0 :(得分:2)
运行命令启动具有代理设置的Nexus_5X_Edited_API_23仿真器(获取更多参数here)
~/Library/Android/sdk/tools/emulator -netdelay none -netspeed full -avd Nexus_5X_Edited_API_23 -http-proxy http://username:password@local_server:8080
您也可以从命令
列出所有模拟器名称emulator -list-avds
答案 1 :(得分:1)
首先,从终端运行模拟器:
/ Users / sergey / Library / Android / sdk / tools / emulator -avd Nexus_5_API_22_x86 - “您需要的所有参数”
然后,在Android Studio的运行按钮上单击clic。选择已在运行的设备。您的应用将在那里部署。
答案 2 :(得分:0)
来自Emulator help section make all TCP connections through a specified HTTP/HTTPS proxy
值可以是以下之一:
http://<server>:<port>
http://<username>:
<password>@<server>:<port>
http://
前缀可以省略。如果未提供-http-proxy <proxy>
命令,模拟器将查找http_proxy
环境变量并自动使用与上述<proxy>
格式匹配的任何值。