我在使用Ubuntu 15.10 x64的模拟Nexus 5(API v23)上使用Android Studio 1.5进行开发。我在代理后面(设置了http_proxy
环境变量)。
创建一个新项目,我直接得到一个错误。 This answer修复了它。接下来我尝试构建它,模拟的手机框架加载,但是是黑色的(没有显示内容)。控制台说:
Android/Sdk/tools/emulator -netdelay none -netspeed full -avd Nexus_5_API_23_x86
emulator: WARNING: UpdateCheck: failed to get a URL: 51 (Error)
emulator: WARNING: UpdateCheck: failed to get the latest version, skipping check (current version '24.4.1'
那么也许这是一个代理问题? - 顺便说一句:我的" gradle.properties"自动填充:systemProp.http.proxyHost
,systemProp.http.proxyUser
,systemProp.http.proxyPort
。
编辑:与Android/Sdk/tools$ ./emulator @Nexus_5_API_23_x86 -http-proxy $HTTP_PROXY
答案 0 :(得分:1)
使用时This answer我在命令行中收到错误
emulator.exe -avd <avd_name> -no-audio -http-proxy <proxy_name>:<proxy_port>
因此,可以使用此命令从命令行启动模拟器来解决此错误
Customers